Remove glutWireTeapot/glutSolidTeapot from gles_stubs because these are conditionaly...
[freeglut] / src / gles_stubs.c
1 /* TODO: implement me! */
2
3 #include <GL/freeglut.h>
4 #include "fg_internal.h"
5
6 void fgDeactivateMenu( SFG_Window *window ) {
7   fprintf(stderr, "fgDeactivateMenu: STUB\n");
8 }
9 void fgDisplayMenu( void ) {
10   fprintf(stderr, "fgDisplayMenu: STUB\n");
11 }
12 void fgUpdateMenuHighlight ( SFG_Menu *menu ) {
13   fprintf(stderr, "fgUpdateMenuHighlight: STUB\n");
14 }
15 GLboolean fgCheckActiveMenu ( SFG_Window *window, int button, GLboolean pressed,
16                               int mouse_x, int mouse_y )  {
17   fprintf(stderr, "fgCheckActiveMenu: STUB\n");
18 }
19
20 int  glutCreateMenu( void (* callback)( int menu ) ) {}
21 void glutDestroyMenu( int menu ) {}
22 int  glutGetMenu( void ) {}
23 void glutSetMenu( int menu ) {}
24 void glutAddMenuEntry( const char* label, int value ) {}
25 void glutAddSubMenu( const char* label, int subMenu ) {}
26 void glutChangeToMenuEntry( int item, const char* label, int value ) {}
27 void glutChangeToSubMenu( int item, const char* label, int value ) {}
28 void glutRemoveMenuItem( int item ) {}
29 void glutAttachMenu( int button ) {}
30 void glutDetachMenu( int button ) {}
31
32 void glutBitmapCharacter( void* font, int character ) {}
33 int  glutBitmapWidth( void* font, int character ) {}
34 void glutStrokeCharacter( void* font, int character ) {}
35 int  glutStrokeWidth( void* font, int character ) {}
36 int  glutBitmapLength( void* font, const unsigned char* string ) {}
37 int  glutStrokeLength( void* font, const unsigned char* string ) {}
38
39 void *glutGetMenuData( void ) {}
40 void  glutSetMenuData(void* data) {}
41
42 int     glutBitmapHeight( void* font ) {}
43 GLfloat glutStrokeHeight( void* font ) {}
44 void    glutBitmapString( void* font, const unsigned char *string ) {}
45 void    glutStrokeString( void* font, const unsigned char *string ) {}