GLUT.H
上传用户:tengyuc
上传日期:2007-08-14
资源大小:722k
文件大小:27k
源码类别:

OpenGL

开发平台:

Visual C++

  1. #ifndef __glut_h__
  2. #define __glut_h__
  3. /* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1998. */
  4. /* This program is freely distributable without licensing fees  and is
  5.    provided without guarantee or warrantee expressed or  implied. This
  6.    program is -not- in the public domain. */
  7. #if defined(_WIN32)
  8. /* GLUT 3.7 now tries to avoid including <windows.h>
  9.    to avoid name space pollution, but Win32's <GL/gl.h> 
  10.    needs APIENTRY and WINGDIAPI defined properly. */
  11. # if 0
  12.    /* This would put tons of macros and crap in our clean name space. */
  13. #  define  WIN32_LEAN_AND_MEAN
  14. #  include <windows.h>
  15. # else
  16.    /* XXX This is from Win32's <windef.h> */
  17. #  ifndef APIENTRY
  18. #   define GLUT_APIENTRY_DEFINED
  19. #   if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) || defined(__BORLANDC__) || defined(__LCC__)
  20. #    define APIENTRY    __stdcall
  21. #   else
  22. #    define APIENTRY
  23. #   endif
  24. #  endif
  25.    /* XXX This is from Win32's <winnt.h> */
  26. #  ifndef CALLBACK
  27. #   if (defined(_M_MRX000) || defined(_M_IX86) || defined(_M_ALPHA) || defined(_M_PPC)) && !defined(MIDL_PASS) || defined(__LCC__)
  28. #    define CALLBACK __stdcall
  29. #   else
  30. #    define CALLBACK
  31. #   endif
  32. #  endif
  33.    /* XXX Hack for lcc compiler.  It doesn't support __declspec(dllimport), just __stdcall. */
  34. #  if defined( __LCC__ )
  35. #   undef WINGDIAPI
  36. #   define WINGDIAPI __stdcall
  37. #  else
  38.    /* XXX This is from Win32's <wingdi.h> and <winnt.h> */
  39. #   ifndef WINGDIAPI
  40. #    define GLUT_WINGDIAPI_DEFINED
  41. #    define WINGDIAPI __declspec(dllimport)
  42. #   endif
  43. #  endif
  44.    /* XXX This is from Win32's <ctype.h> */
  45. #  ifndef _WCHAR_T_DEFINED
  46. typedef unsigned short wchar_t;
  47. #   define _WCHAR_T_DEFINED
  48. #  endif
  49. # endif
  50. /* To disable automatic library usage for GLUT, define GLUT_NO_LIB_PRAGMA
  51.    in your compile preprocessor options. */
  52. # if !defined(GLUT_BUILDING_LIB) && !defined(GLUT_NO_LIB_PRAGMA)
  53. #  pragma comment (lib, "winmm.lib")      /* link with Windows MultiMedia lib */
  54. /* To enable automatic SGI OpenGL for Windows library usage for GLUT,
  55.    define GLUT_USE_SGI_OPENGL in your compile preprocessor options.  */
  56. #  ifdef GLUT_USE_SGI_OPENGL
  57. #   pragma comment (lib, "opengl.lib")    /* link with SGI OpenGL for Windows lib */
  58. #   pragma comment (lib, "glu.lib")       /* link with SGI OpenGL Utility lib */
  59. #   pragma comment (lib, "glut.lib")      /* link with Win32 GLUT for SGI OpenGL lib */
  60. #  else
  61. #   pragma comment (lib, "opengl32.lib")  /* link with Microsoft OpenGL lib */
  62. #   pragma comment (lib, "glu32.lib")     /* link with Microsoft OpenGL Utility lib */
  63. #   pragma comment (lib, "glut32.lib")    /* link with Win32 GLUT lib */
  64. #  endif
  65. # endif
  66. /* To disable supression of annoying warnings about floats being promoted
  67.    to doubles, define GLUT_NO_WARNING_DISABLE in your compile preprocessor
  68.    options. */
  69. # ifndef GLUT_NO_WARNING_DISABLE
  70. #  pragma warning (disable:4244)  /* Disable bogus VC++ 4.2 conversion warnings. */
  71. #  pragma warning (disable:4305)  /* VC++ 5.0 version of above warning. */
  72. # endif
  73. /* Win32 has an annoying issue where there are multiple C run-time
  74.    libraries (CRTs).  If the executable is linked with a different CRT
  75.    from the GLUT DLL, the GLUT DLL will not share the same CRT static
  76.    data seen by the executable.  In particular, atexit callbacks registered
  77.    in the executable will not be called if GLUT calls its (different)
  78.    exit routine).  GLUT is typically built with the
  79.    "/MD" option (the CRT with multithreading DLL support), but the Visual
  80.    C++ linker default is "/ML" (the single threaded CRT).
  81.    One workaround to this issue is requiring users to always link with
  82.    the same CRT as GLUT is compiled with.  That requires users supply a
  83.    non-standard option.  GLUT 3.7 has its own built-in workaround where
  84.    the executable's "exit" function pointer is covertly passed to GLUT.
  85.    GLUT then calls the executable's exit function pointer to ensure that
  86.    any "atexit" calls registered by the application are called if GLUT
  87.    needs to exit.
  88.    Note that the __glut*WithExit routines should NEVER be called directly.
  89.    To avoid the atexit workaround, #define GLUT_DISABLE_ATEXIT_HACK. */
  90. /* XXX This is from Win32's <process.h> */
  91. # if !defined(_MSC_VER) && !defined(__cdecl)
  92.    /* Define __cdecl for non-Microsoft compilers. */
  93. #  define __cdecl
  94. #  define GLUT_DEFINED___CDECL
  95. # endif
  96. # ifndef _CRTIMP
  97. #  ifdef _NTSDK
  98.     /* Definition compatible with NT SDK */
  99. #   define _CRTIMP
  100. #  else
  101.     /* Current definition */
  102. #   ifdef _DLL
  103. #    define _CRTIMP __declspec(dllimport)
  104. #   else
  105. #    define _CRTIMP
  106. #   endif
  107. #  endif
  108. #  define GLUT_DEFINED__CRTIMP
  109. # endif
  110. /* GLUT API entry point declarations for Win32. */
  111. # ifdef GLUT_BUILDING_LIB
  112. #  define GLUTAPI __declspec(dllexport)
  113. # else
  114. #  ifdef _DLL
  115. #   define GLUTAPI __declspec(dllimport)
  116. #  else
  117. #   define GLUTAPI extern
  118. #  endif
  119. # endif
  120. /* GLUT callback calling convention for Win32. */
  121. # define GLUTCALLBACK __cdecl
  122. #endif  /* _WIN32 */
  123. #include <GL/gl.h>
  124. #include <GL/glu.h>
  125. #ifdef __cplusplus
  126. extern "C" {
  127. #endif
  128. #if defined(_WIN32)
  129. # ifndef GLUT_BUILDING_LIB
  130. extern _CRTIMP void __cdecl exit(int);
  131. # endif
  132. #else
  133. /* non-Win32 case. */
  134. /* Define APIENTRY and CALLBACK to nothing if we aren't on Win32. */
  135. # define APIENTRY
  136. # define GLUT_APIENTRY_DEFINED
  137. # define CALLBACK
  138. /* Define GLUTAPI and GLUTCALLBACK as below if we aren't on Win32. */
  139. # define GLUTAPI extern
  140. # define GLUTCALLBACK
  141. /* Prototype exit for the non-Win32 case (see above). */
  142. extern void exit(int);
  143. #endif
  144. /**
  145.  GLUT API revision history:
  146.  
  147.  GLUT_API_VERSION is updated to reflect incompatible GLUT
  148.  API changes (interface changes, semantic changes, deletions,
  149.  or additions).
  150.  
  151.  GLUT_API_VERSION=1  First public release of GLUT.  11/29/94
  152.  GLUT_API_VERSION=2  Added support for OpenGL/GLX multisampling,
  153.  extension.  Supports new input devices like tablet, dial and button
  154.  box, and Spaceball.  Easy to query OpenGL extensions.
  155.  GLUT_API_VERSION=3  glutMenuStatus added.
  156.  GLUT_API_VERSION=4  glutInitDisplayString, glutWarpPointer,
  157.  glutBitmapLength, glutStrokeLength, glutWindowStatusFunc, dynamic
  158.  video resize subAPI, glutPostWindowRedisplay, glutKeyboardUpFunc,
  159.  glutSpecialUpFunc, glutIgnoreKeyRepeat, glutSetKeyRepeat,
  160.  glutJoystickFunc, glutForceJoystickFunc (NOT FINALIZED!).
  161. **/
  162. #ifndef GLUT_API_VERSION  /* allow this to be overriden */
  163. #define GLUT_API_VERSION 3
  164. #endif
  165. /**
  166.  GLUT implementation revision history:
  167.  
  168.  GLUT_XLIB_IMPLEMENTATION is updated to reflect both GLUT
  169.  API revisions and implementation revisions (ie, bug fixes).
  170.  GLUT_XLIB_IMPLEMENTATION=1  mjk's first public release of
  171.  GLUT Xlib-based implementation.  11/29/94
  172.  GLUT_XLIB_IMPLEMENTATION=2  mjk's second public release of
  173.  GLUT Xlib-based implementation providing GLUT version 2 
  174.  interfaces.
  175.  GLUT_XLIB_IMPLEMENTATION=3  mjk's GLUT 2.2 images. 4/17/95
  176.  GLUT_XLIB_IMPLEMENTATION=4  mjk's GLUT 2.3 images. 6/?/95
  177.  GLUT_XLIB_IMPLEMENTATION=5  mjk's GLUT 3.0 images. 10/?/95
  178.  GLUT_XLIB_IMPLEMENTATION=7  mjk's GLUT 3.1+ with glutWarpPoitner.  7/24/96
  179.  GLUT_XLIB_IMPLEMENTATION=8  mjk's GLUT 3.1+ with glutWarpPoitner
  180.  and video resize.  1/3/97
  181.  GLUT_XLIB_IMPLEMENTATION=9 mjk's GLUT 3.4 release with early GLUT 4 routines.
  182.  GLUT_XLIB_IMPLEMENTATION=11 Mesa 2.5's GLUT 3.6 release.
  183.  GLUT_XLIB_IMPLEMENTATION=12 mjk's GLUT 3.6 release with early GLUT 4 routines + signal handling.
  184.  GLUT_XLIB_IMPLEMENTATION=13 mjk's GLUT 3.7 beta with GameGLUT support.
  185.  GLUT_XLIB_IMPLEMENTATION=14 mjk's GLUT 3.7 beta with f90gl friend interface.
  186.  GLUT_XLIB_IMPLEMENTATION=15 mjk's GLUT 3.7 beta sync'ed with Mesa <GL/glut.h>
  187. **/
  188. #ifndef GLUT_XLIB_IMPLEMENTATION  /* Allow this to be overriden. */
  189. #define GLUT_XLIB_IMPLEMENTATION 15
  190. #endif
  191. /* Display mode bit masks. */
  192. #define GLUT_RGB 0
  193. #define GLUT_RGBA GLUT_RGB
  194. #define GLUT_INDEX 1
  195. #define GLUT_SINGLE 0
  196. #define GLUT_DOUBLE 2
  197. #define GLUT_ACCUM 4
  198. #define GLUT_ALPHA 8
  199. #define GLUT_DEPTH 16
  200. #define GLUT_STENCIL 32
  201. #if (GLUT_API_VERSION >= 2)
  202. #define GLUT_MULTISAMPLE 128
  203. #define GLUT_STEREO 256
  204. #endif
  205. #if (GLUT_API_VERSION >= 3)
  206. #define GLUT_LUMINANCE 512
  207. #endif
  208. /* Mouse buttons. */
  209. #define GLUT_LEFT_BUTTON 0
  210. #define GLUT_MIDDLE_BUTTON 1
  211. #define GLUT_RIGHT_BUTTON 2
  212. /* Mouse button  state. */
  213. #define GLUT_DOWN 0
  214. #define GLUT_UP 1
  215. #if (GLUT_API_VERSION >= 2)
  216. /* function keys */
  217. #define GLUT_KEY_F1 1
  218. #define GLUT_KEY_F2 2
  219. #define GLUT_KEY_F3 3
  220. #define GLUT_KEY_F4 4
  221. #define GLUT_KEY_F5 5
  222. #define GLUT_KEY_F6 6
  223. #define GLUT_KEY_F7 7
  224. #define GLUT_KEY_F8 8
  225. #define GLUT_KEY_F9 9
  226. #define GLUT_KEY_F10 10
  227. #define GLUT_KEY_F11 11
  228. #define GLUT_KEY_F12 12
  229. /* directional keys */
  230. #define GLUT_KEY_LEFT 100
  231. #define GLUT_KEY_UP 101
  232. #define GLUT_KEY_RIGHT 102
  233. #define GLUT_KEY_DOWN 103
  234. #define GLUT_KEY_PAGE_UP 104
  235. #define GLUT_KEY_PAGE_DOWN 105
  236. #define GLUT_KEY_HOME 106
  237. #define GLUT_KEY_END 107
  238. #define GLUT_KEY_INSERT 108
  239. #endif
  240. /* Entry/exit  state. */
  241. #define GLUT_LEFT 0
  242. #define GLUT_ENTERED 1
  243. /* Menu usage  state. */
  244. #define GLUT_MENU_NOT_IN_USE 0
  245. #define GLUT_MENU_IN_USE 1
  246. /* Visibility  state. */
  247. #define GLUT_NOT_VISIBLE 0
  248. #define GLUT_VISIBLE 1
  249. /* Window status  state. */
  250. #define GLUT_HIDDEN 0
  251. #define GLUT_FULLY_RETAINED 1
  252. #define GLUT_PARTIALLY_RETAINED 2
  253. #define GLUT_FULLY_COVERED 3
  254. /* Color index component selection values. */
  255. #define GLUT_RED 0
  256. #define GLUT_GREEN 1
  257. #define GLUT_BLUE 2
  258. #if defined(_WIN32)
  259. /* Stroke font constants (use these in GLUT program). */
  260. #define GLUT_STROKE_ROMAN ((void*)0)
  261. #define GLUT_STROKE_MONO_ROMAN ((void*)1)
  262. /* Bitmap font constants (use these in GLUT program). */
  263. #define GLUT_BITMAP_9_BY_15 ((void*)2)
  264. #define GLUT_BITMAP_8_BY_13 ((void*)3)
  265. #define GLUT_BITMAP_TIMES_ROMAN_10 ((void*)4)
  266. #define GLUT_BITMAP_TIMES_ROMAN_24 ((void*)5)
  267. #if (GLUT_API_VERSION >= 3)
  268. #define GLUT_BITMAP_HELVETICA_10 ((void*)6)
  269. #define GLUT_BITMAP_HELVETICA_12 ((void*)7)
  270. #define GLUT_BITMAP_HELVETICA_18 ((void*)8)
  271. #endif
  272. #else
  273. /* Stroke font opaque addresses (use constants instead in source code). */
  274. GLUTAPI void *glutStrokeRoman;
  275. GLUTAPI void *glutStrokeMonoRoman;
  276. /* Stroke font constants (use these in GLUT program). */
  277. #define GLUT_STROKE_ROMAN (&glutStrokeRoman)
  278. #define GLUT_STROKE_MONO_ROMAN (&glutStrokeMonoRoman)
  279. /* Bitmap font opaque addresses (use constants instead in source code). */
  280. GLUTAPI void *glutBitmap9By15;
  281. GLUTAPI void *glutBitmap8By13;
  282. GLUTAPI void *glutBitmapTimesRoman10;
  283. GLUTAPI void *glutBitmapTimesRoman24;
  284. GLUTAPI void *glutBitmapHelvetica10;
  285. GLUTAPI void *glutBitmapHelvetica12;
  286. GLUTAPI void *glutBitmapHelvetica18;
  287. /* Bitmap font constants (use these in GLUT program). */
  288. #define GLUT_BITMAP_9_BY_15 (&glutBitmap9By15)
  289. #define GLUT_BITMAP_8_BY_13 (&glutBitmap8By13)
  290. #define GLUT_BITMAP_TIMES_ROMAN_10 (&glutBitmapTimesRoman10)
  291. #define GLUT_BITMAP_TIMES_ROMAN_24 (&glutBitmapTimesRoman24)
  292. #if (GLUT_API_VERSION >= 3)
  293. #define GLUT_BITMAP_HELVETICA_10 (&glutBitmapHelvetica10)
  294. #define GLUT_BITMAP_HELVETICA_12 (&glutBitmapHelvetica12)
  295. #define GLUT_BITMAP_HELVETICA_18 (&glutBitmapHelvetica18)
  296. #endif
  297. #endif
  298. /* glutGet parameters. */
  299. #define GLUT_WINDOW_X ((GLenum) 100)
  300. #define GLUT_WINDOW_Y ((GLenum) 101)
  301. #define GLUT_WINDOW_WIDTH ((GLenum) 102)
  302. #define GLUT_WINDOW_HEIGHT ((GLenum) 103)
  303. #define GLUT_WINDOW_BUFFER_SIZE ((GLenum) 104)
  304. #define GLUT_WINDOW_STENCIL_SIZE ((GLenum) 105)
  305. #define GLUT_WINDOW_DEPTH_SIZE ((GLenum) 106)
  306. #define GLUT_WINDOW_RED_SIZE ((GLenum) 107)
  307. #define GLUT_WINDOW_GREEN_SIZE ((GLenum) 108)
  308. #define GLUT_WINDOW_BLUE_SIZE ((GLenum) 109)
  309. #define GLUT_WINDOW_ALPHA_SIZE ((GLenum) 110)
  310. #define GLUT_WINDOW_ACCUM_RED_SIZE ((GLenum) 111)
  311. #define GLUT_WINDOW_ACCUM_GREEN_SIZE ((GLenum) 112)
  312. #define GLUT_WINDOW_ACCUM_BLUE_SIZE ((GLenum) 113)
  313. #define GLUT_WINDOW_ACCUM_ALPHA_SIZE ((GLenum) 114)
  314. #define GLUT_WINDOW_DOUBLEBUFFER ((GLenum) 115)
  315. #define GLUT_WINDOW_RGBA ((GLenum) 116)
  316. #define GLUT_WINDOW_PARENT ((GLenum) 117)
  317. #define GLUT_WINDOW_NUM_CHILDREN ((GLenum) 118)
  318. #define GLUT_WINDOW_COLORMAP_SIZE ((GLenum) 119)
  319. #if (GLUT_API_VERSION >= 2)
  320. #define GLUT_WINDOW_NUM_SAMPLES ((GLenum) 120)
  321. #define GLUT_WINDOW_STEREO ((GLenum) 121)
  322. #endif
  323. #if (GLUT_API_VERSION >= 3)
  324. #define GLUT_WINDOW_CURSOR ((GLenum) 122)
  325. #endif
  326. #define GLUT_SCREEN_WIDTH ((GLenum) 200)
  327. #define GLUT_SCREEN_HEIGHT ((GLenum) 201)
  328. #define GLUT_SCREEN_WIDTH_MM ((GLenum) 202)
  329. #define GLUT_SCREEN_HEIGHT_MM ((GLenum) 203)
  330. #define GLUT_MENU_NUM_ITEMS ((GLenum) 300)
  331. #define GLUT_DISPLAY_MODE_POSSIBLE ((GLenum) 400)
  332. #define GLUT_INIT_WINDOW_X ((GLenum) 500)
  333. #define GLUT_INIT_WINDOW_Y ((GLenum) 501)
  334. #define GLUT_INIT_WINDOW_WIDTH ((GLenum) 502)
  335. #define GLUT_INIT_WINDOW_HEIGHT ((GLenum) 503)
  336. #define GLUT_INIT_DISPLAY_MODE ((GLenum) 504)
  337. #if (GLUT_API_VERSION >= 2)
  338. #define GLUT_ELAPSED_TIME ((GLenum) 700)
  339. #endif
  340. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 13)
  341. #define GLUT_WINDOW_FORMAT_ID ((GLenum) 123)
  342. #endif
  343. #if (GLUT_API_VERSION >= 2)
  344. /* glutDeviceGet parameters. */
  345. #define GLUT_HAS_KEYBOARD ((GLenum) 600)
  346. #define GLUT_HAS_MOUSE ((GLenum) 601)
  347. #define GLUT_HAS_SPACEBALL ((GLenum) 602)
  348. #define GLUT_HAS_DIAL_AND_BUTTON_BOX ((GLenum) 603)
  349. #define GLUT_HAS_TABLET ((GLenum) 604)
  350. #define GLUT_NUM_MOUSE_BUTTONS ((GLenum) 605)
  351. #define GLUT_NUM_SPACEBALL_BUTTONS ((GLenum) 606)
  352. #define GLUT_NUM_BUTTON_BOX_BUTTONS ((GLenum) 607)
  353. #define GLUT_NUM_DIALS ((GLenum) 608)
  354. #define GLUT_NUM_TABLET_BUTTONS ((GLenum) 609)
  355. #endif
  356. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 13)
  357. #define GLUT_DEVICE_IGNORE_KEY_REPEAT   ((GLenum) 610)
  358. #define GLUT_DEVICE_KEY_REPEAT          ((GLenum) 611)
  359. #define GLUT_HAS_JOYSTICK ((GLenum) 612)
  360. #define GLUT_OWNS_JOYSTICK ((GLenum) 613)
  361. #define GLUT_JOYSTICK_BUTTONS ((GLenum) 614)
  362. #define GLUT_JOYSTICK_AXES ((GLenum) 615)
  363. #define GLUT_JOYSTICK_POLL_RATE ((GLenum) 616)
  364. #endif
  365. #if (GLUT_API_VERSION >= 3)
  366. /* glutLayerGet parameters. */
  367. #define GLUT_OVERLAY_POSSIBLE           ((GLenum) 800)
  368. #define GLUT_LAYER_IN_USE ((GLenum) 801)
  369. #define GLUT_HAS_OVERLAY ((GLenum) 802)
  370. #define GLUT_TRANSPARENT_INDEX ((GLenum) 803)
  371. #define GLUT_NORMAL_DAMAGED ((GLenum) 804)
  372. #define GLUT_OVERLAY_DAMAGED ((GLenum) 805)
  373. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  374. /* glutVideoResizeGet parameters. */
  375. #define GLUT_VIDEO_RESIZE_POSSIBLE ((GLenum) 900)
  376. #define GLUT_VIDEO_RESIZE_IN_USE ((GLenum) 901)
  377. #define GLUT_VIDEO_RESIZE_X_DELTA ((GLenum) 902)
  378. #define GLUT_VIDEO_RESIZE_Y_DELTA ((GLenum) 903)
  379. #define GLUT_VIDEO_RESIZE_WIDTH_DELTA ((GLenum) 904)
  380. #define GLUT_VIDEO_RESIZE_HEIGHT_DELTA ((GLenum) 905)
  381. #define GLUT_VIDEO_RESIZE_X ((GLenum) 906)
  382. #define GLUT_VIDEO_RESIZE_Y ((GLenum) 907)
  383. #define GLUT_VIDEO_RESIZE_WIDTH ((GLenum) 908)
  384. #define GLUT_VIDEO_RESIZE_HEIGHT ((GLenum) 909)
  385. #endif
  386. /* glutUseLayer parameters. */
  387. #define GLUT_NORMAL ((GLenum) 0)
  388. #define GLUT_OVERLAY ((GLenum) 1)
  389. /* glutGetModifiers return mask. */
  390. #define GLUT_ACTIVE_SHIFT               1
  391. #define GLUT_ACTIVE_CTRL                2
  392. #define GLUT_ACTIVE_ALT                 4
  393. /* glutSetCursor parameters. */
  394. /* Basic arrows. */
  395. #define GLUT_CURSOR_RIGHT_ARROW 0
  396. #define GLUT_CURSOR_LEFT_ARROW 1
  397. /* Symbolic cursor shapes. */
  398. #define GLUT_CURSOR_INFO 2
  399. #define GLUT_CURSOR_DESTROY 3
  400. #define GLUT_CURSOR_HELP 4
  401. #define GLUT_CURSOR_CYCLE 5
  402. #define GLUT_CURSOR_SPRAY 6
  403. #define GLUT_CURSOR_WAIT 7
  404. #define GLUT_CURSOR_TEXT 8
  405. #define GLUT_CURSOR_CROSSHAIR 9
  406. /* Directional cursors. */
  407. #define GLUT_CURSOR_UP_DOWN 10
  408. #define GLUT_CURSOR_LEFT_RIGHT 11
  409. /* Sizing cursors. */
  410. #define GLUT_CURSOR_TOP_SIDE 12
  411. #define GLUT_CURSOR_BOTTOM_SIDE 13
  412. #define GLUT_CURSOR_LEFT_SIDE 14
  413. #define GLUT_CURSOR_RIGHT_SIDE 15
  414. #define GLUT_CURSOR_TOP_LEFT_CORNER 16
  415. #define GLUT_CURSOR_TOP_RIGHT_CORNER 17
  416. #define GLUT_CURSOR_BOTTOM_RIGHT_CORNER 18
  417. #define GLUT_CURSOR_BOTTOM_LEFT_CORNER 19
  418. /* Inherit from parent window. */
  419. #define GLUT_CURSOR_INHERIT 100
  420. /* Blank cursor. */
  421. #define GLUT_CURSOR_NONE 101
  422. /* Fullscreen crosshair (if available). */
  423. #define GLUT_CURSOR_FULL_CROSSHAIR 102
  424. #endif
  425. /* GLUT initialization sub-API. */
  426. GLUTAPI void APIENTRY glutInit(int *argcp, char **argv);
  427. #if defined(_WIN32) && !defined(GLUT_DISABLE_ATEXIT_HACK)
  428. GLUTAPI void APIENTRY __glutInitWithExit(int *argcp, char **argv, void (__cdecl *exitfunc)(int));
  429. #ifndef GLUT_BUILDING_LIB
  430. static void APIENTRY glutInit_ATEXIT_HACK(int *argcp, char **argv) { __glutInitWithExit(argcp, argv, exit); }
  431. #define glutInit glutInit_ATEXIT_HACK
  432. #endif
  433. #endif
  434. GLUTAPI void APIENTRY glutInitDisplayMode(unsigned int mode);
  435. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  436. GLUTAPI void APIENTRY glutInitDisplayString(const char *string);
  437. #endif
  438. GLUTAPI void APIENTRY glutInitWindowPosition(int x, int y);
  439. GLUTAPI void APIENTRY glutInitWindowSize(int width, int height);
  440. GLUTAPI void APIENTRY glutMainLoop(void);
  441. /* GLUT window sub-API. */
  442. GLUTAPI int APIENTRY glutCreateWindow(const char *title);
  443. #if defined(_WIN32) && !defined(GLUT_DISABLE_ATEXIT_HACK)
  444. GLUTAPI int APIENTRY __glutCreateWindowWithExit(const char *title, void (__cdecl *exitfunc)(int));
  445. #ifndef GLUT_BUILDING_LIB
  446. static int APIENTRY glutCreateWindow_ATEXIT_HACK(const char *title) { return __glutCreateWindowWithExit(title, exit); }
  447. #define glutCreateWindow glutCreateWindow_ATEXIT_HACK
  448. #endif
  449. #endif
  450. GLUTAPI int APIENTRY glutCreateSubWindow(int win, int x, int y, int width, int height);
  451. GLUTAPI void APIENTRY glutDestroyWindow(int win);
  452. GLUTAPI void APIENTRY glutPostRedisplay(void);
  453. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 11)
  454. GLUTAPI void APIENTRY glutPostWindowRedisplay(int win);
  455. #endif
  456. GLUTAPI void APIENTRY glutSwapBuffers(void);
  457. GLUTAPI int APIENTRY glutGetWindow(void);
  458. GLUTAPI void APIENTRY glutSetWindow(int win);
  459. GLUTAPI void APIENTRY glutSetWindowTitle(const char *title);
  460. GLUTAPI void APIENTRY glutSetIconTitle(const char *title);
  461. GLUTAPI void APIENTRY glutPositionWindow(int x, int y);
  462. GLUTAPI void APIENTRY glutReshapeWindow(int width, int height);
  463. GLUTAPI void APIENTRY glutPopWindow(void);
  464. GLUTAPI void APIENTRY glutPushWindow(void);
  465. GLUTAPI void APIENTRY glutIconifyWindow(void);
  466. GLUTAPI void APIENTRY glutShowWindow(void);
  467. GLUTAPI void APIENTRY glutHideWindow(void);
  468. #if (GLUT_API_VERSION >= 3)
  469. GLUTAPI void APIENTRY glutFullScreen(void);
  470. GLUTAPI void APIENTRY glutSetCursor(int cursor);
  471. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  472. GLUTAPI void APIENTRY glutWarpPointer(int x, int y);
  473. #endif
  474. /* GLUT overlay sub-API. */
  475. GLUTAPI void APIENTRY glutEstablishOverlay(void);
  476. GLUTAPI void APIENTRY glutRemoveOverlay(void);
  477. GLUTAPI void APIENTRY glutUseLayer(GLenum layer);
  478. GLUTAPI void APIENTRY glutPostOverlayRedisplay(void);
  479. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 11)
  480. GLUTAPI void APIENTRY glutPostWindowOverlayRedisplay(int win);
  481. #endif
  482. GLUTAPI void APIENTRY glutShowOverlay(void);
  483. GLUTAPI void APIENTRY glutHideOverlay(void);
  484. #endif
  485. /* GLUT menu sub-API. */
  486. GLUTAPI int APIENTRY glutCreateMenu(void (GLUTCALLBACK *func)(int));
  487. #if defined(_WIN32) && !defined(GLUT_DISABLE_ATEXIT_HACK)
  488. GLUTAPI int APIENTRY __glutCreateMenuWithExit(void (GLUTCALLBACK *func)(int), void (__cdecl *exitfunc)(int));
  489. #ifndef GLUT_BUILDING_LIB
  490. static int APIENTRY glutCreateMenu_ATEXIT_HACK(void (GLUTCALLBACK *func)(int)) { return __glutCreateMenuWithExit(func, exit); }
  491. #define glutCreateMenu glutCreateMenu_ATEXIT_HACK
  492. #endif
  493. #endif
  494. GLUTAPI void APIENTRY glutDestroyMenu(int menu);
  495. GLUTAPI int APIENTRY glutGetMenu(void);
  496. GLUTAPI void APIENTRY glutSetMenu(int menu);
  497. GLUTAPI void APIENTRY glutAddMenuEntry(const char *label, int value);
  498. GLUTAPI void APIENTRY glutAddSubMenu(const char *label, int submenu);
  499. GLUTAPI void APIENTRY glutChangeToMenuEntry(int item, const char *label, int value);
  500. GLUTAPI void APIENTRY glutChangeToSubMenu(int item, const char *label, int submenu);
  501. GLUTAPI void APIENTRY glutRemoveMenuItem(int item);
  502. GLUTAPI void APIENTRY glutAttachMenu(int button);
  503. GLUTAPI void APIENTRY glutDetachMenu(int button);
  504. /* GLUT window callback sub-API. */
  505. GLUTAPI void APIENTRY glutDisplayFunc(void (GLUTCALLBACK *func)(void));
  506. GLUTAPI void APIENTRY glutReshapeFunc(void (GLUTCALLBACK *func)(int width, int height));
  507. GLUTAPI void APIENTRY glutKeyboardFunc(void (GLUTCALLBACK *func)(unsigned char key, int x, int y));
  508. GLUTAPI void APIENTRY glutMouseFunc(void (GLUTCALLBACK *func)(int button, int state, int x, int y));
  509. GLUTAPI void APIENTRY glutMotionFunc(void (GLUTCALLBACK *func)(int x, int y));
  510. GLUTAPI void APIENTRY glutPassiveMotionFunc(void (GLUTCALLBACK *func)(int x, int y));
  511. GLUTAPI void APIENTRY glutEntryFunc(void (GLUTCALLBACK *func)(int state));
  512. GLUTAPI void APIENTRY glutVisibilityFunc(void (GLUTCALLBACK *func)(int state));
  513. GLUTAPI void APIENTRY glutIdleFunc(void (GLUTCALLBACK *func)(void));
  514. GLUTAPI void APIENTRY glutTimerFunc(unsigned int millis, void (GLUTCALLBACK *func)(int value), int value);
  515. GLUTAPI void APIENTRY glutMenuStateFunc(void (GLUTCALLBACK *func)(int state));
  516. #if (GLUT_API_VERSION >= 2)
  517. GLUTAPI void APIENTRY glutSpecialFunc(void (GLUTCALLBACK *func)(int key, int x, int y));
  518. GLUTAPI void APIENTRY glutSpaceballMotionFunc(void (GLUTCALLBACK *func)(int x, int y, int z));
  519. GLUTAPI void APIENTRY glutSpaceballRotateFunc(void (GLUTCALLBACK *func)(int x, int y, int z));
  520. GLUTAPI void APIENTRY glutSpaceballButtonFunc(void (GLUTCALLBACK *func)(int button, int state));
  521. GLUTAPI void APIENTRY glutButtonBoxFunc(void (GLUTCALLBACK *func)(int button, int state));
  522. GLUTAPI void APIENTRY glutDialsFunc(void (GLUTCALLBACK *func)(int dial, int value));
  523. GLUTAPI void APIENTRY glutTabletMotionFunc(void (GLUTCALLBACK *func)(int x, int y));
  524. GLUTAPI void APIENTRY glutTabletButtonFunc(void (GLUTCALLBACK *func)(int button, int state, int x, int y));
  525. #if (GLUT_API_VERSION >= 3)
  526. GLUTAPI void APIENTRY glutMenuStatusFunc(void (GLUTCALLBACK *func)(int status, int x, int y));
  527. GLUTAPI void APIENTRY glutOverlayDisplayFunc(void (GLUTCALLBACK *func)(void));
  528. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  529. GLUTAPI void APIENTRY glutWindowStatusFunc(void (GLUTCALLBACK *func)(int state));
  530. #endif
  531. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 13)
  532. GLUTAPI void APIENTRY glutKeyboardUpFunc(void (GLUTCALLBACK *func)(unsigned char key, int x, int y));
  533. GLUTAPI void APIENTRY glutSpecialUpFunc(void (GLUTCALLBACK *func)(int key, int x, int y));
  534. GLUTAPI void APIENTRY glutJoystickFunc(void (GLUTCALLBACK *func)(unsigned int buttonMask, int x, int y, int z), int pollInterval);
  535. #endif
  536. #endif
  537. #endif
  538. /* GLUT color index sub-API. */
  539. GLUTAPI void APIENTRY glutSetColor(int, GLfloat red, GLfloat green, GLfloat blue);
  540. GLUTAPI GLfloat APIENTRY glutGetColor(int ndx, int component);
  541. GLUTAPI void APIENTRY glutCopyColormap(int win);
  542. /* GLUT state retrieval sub-API. */
  543. GLUTAPI int APIENTRY glutGet(GLenum type);
  544. GLUTAPI int APIENTRY glutDeviceGet(GLenum type);
  545. #if (GLUT_API_VERSION >= 2)
  546. /* GLUT extension support sub-API */
  547. GLUTAPI int APIENTRY glutExtensionSupported(const char *name);
  548. #endif
  549. #if (GLUT_API_VERSION >= 3)
  550. GLUTAPI int APIENTRY glutGetModifiers(void);
  551. GLUTAPI int APIENTRY glutLayerGet(GLenum type);
  552. #endif
  553. /* GLUT font sub-API */
  554. GLUTAPI void APIENTRY glutBitmapCharacter(void *font, int character);
  555. GLUTAPI int APIENTRY glutBitmapWidth(void *font, int character);
  556. GLUTAPI void APIENTRY glutStrokeCharacter(void *font, int character);
  557. GLUTAPI int APIENTRY glutStrokeWidth(void *font, int character);
  558. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  559. GLUTAPI int APIENTRY glutBitmapLength(void *font, const unsigned char *string);
  560. GLUTAPI int APIENTRY glutStrokeLength(void *font, const unsigned char *string);
  561. #endif
  562. /* GLUT pre-built models sub-API */
  563. GLUTAPI void APIENTRY glutWireSphere(GLdouble radius, GLint slices, GLint stacks);
  564. GLUTAPI void APIENTRY glutSolidSphere(GLdouble radius, GLint slices, GLint stacks);
  565. GLUTAPI void APIENTRY glutWireCone(GLdouble base, GLdouble height, GLint slices, GLint stacks);
  566. GLUTAPI void APIENTRY glutSolidCone(GLdouble base, GLdouble height, GLint slices, GLint stacks);
  567. GLUTAPI void APIENTRY glutWireCube(GLdouble size);
  568. GLUTAPI void APIENTRY glutSolidCube(GLdouble size);
  569. GLUTAPI void APIENTRY glutWireTorus(GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint rings);
  570. GLUTAPI void APIENTRY glutSolidTorus(GLdouble innerRadius, GLdouble outerRadius, GLint sides, GLint rings);
  571. GLUTAPI void APIENTRY glutWireDodecahedron(void);
  572. GLUTAPI void APIENTRY glutSolidDodecahedron(void);
  573. GLUTAPI void APIENTRY glutWireTeapot(GLdouble size);
  574. GLUTAPI void APIENTRY glutSolidTeapot(GLdouble size);
  575. GLUTAPI void APIENTRY glutWireOctahedron(void);
  576. GLUTAPI void APIENTRY glutSolidOctahedron(void);
  577. GLUTAPI void APIENTRY glutWireTetrahedron(void);
  578. GLUTAPI void APIENTRY glutSolidTetrahedron(void);
  579. GLUTAPI void APIENTRY glutWireIcosahedron(void);
  580. GLUTAPI void APIENTRY glutSolidIcosahedron(void);
  581. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 9)
  582. /* GLUT video resize sub-API. */
  583. GLUTAPI int APIENTRY glutVideoResizeGet(GLenum param);
  584. GLUTAPI void APIENTRY glutSetupVideoResizing(void);
  585. GLUTAPI void APIENTRY glutStopVideoResizing(void);
  586. GLUTAPI void APIENTRY glutVideoResize(int x, int y, int width, int height);
  587. GLUTAPI void APIENTRY glutVideoPan(int x, int y, int width, int height);
  588. /* GLUT debugging sub-API. */
  589. GLUTAPI void APIENTRY glutReportErrors(void);
  590. #endif
  591. #if (GLUT_API_VERSION >= 4 || GLUT_XLIB_IMPLEMENTATION >= 13)
  592. /* GLUT device control sub-API. */
  593. /* glutSetKeyRepeat modes. */
  594. #define GLUT_KEY_REPEAT_OFF 0
  595. #define GLUT_KEY_REPEAT_ON 1
  596. #define GLUT_KEY_REPEAT_DEFAULT 2
  597. /* Joystick button masks. */
  598. #define GLUT_JOYSTICK_BUTTON_A 1
  599. #define GLUT_JOYSTICK_BUTTON_B 2
  600. #define GLUT_JOYSTICK_BUTTON_C 4
  601. #define GLUT_JOYSTICK_BUTTON_D 8
  602. GLUTAPI void APIENTRY glutIgnoreKeyRepeat(int ignore);
  603. GLUTAPI void APIENTRY glutSetKeyRepeat(int repeatMode);
  604. GLUTAPI void APIENTRY glutForceJoystickFunc(void);
  605. /* GLUT game mode sub-API. */
  606. /* glutGameModeGet. */
  607. #define GLUT_GAME_MODE_ACTIVE           ((GLenum) 0)
  608. #define GLUT_GAME_MODE_POSSIBLE         ((GLenum) 1)
  609. #define GLUT_GAME_MODE_WIDTH            ((GLenum) 2)
  610. #define GLUT_GAME_MODE_HEIGHT           ((GLenum) 3)
  611. #define GLUT_GAME_MODE_PIXEL_DEPTH      ((GLenum) 4)
  612. #define GLUT_GAME_MODE_REFRESH_RATE     ((GLenum) 5)
  613. #define GLUT_GAME_MODE_DISPLAY_CHANGED  ((GLenum) 6)
  614. GLUTAPI void APIENTRY glutGameModeString(const char *string);
  615. GLUTAPI int APIENTRY glutEnterGameMode(void);
  616. GLUTAPI void APIENTRY glutLeaveGameMode(void);
  617. GLUTAPI int APIENTRY glutGameModeGet(GLenum mode);
  618. #endif
  619. #ifdef __cplusplus
  620. }
  621. #endif
  622. #ifdef GLUT_APIENTRY_DEFINED
  623. # undef GLUT_APIENTRY_DEFINED
  624. # undef APIENTRY
  625. #endif
  626. #ifdef GLUT_WINGDIAPI_DEFINED
  627. # undef GLUT_WINGDIAPI_DEFINED
  628. # undef WINGDIAPI
  629. #endif
  630. #ifdef GLUT_DEFINED___CDECL
  631. # undef GLUT_DEFINED___CDECL
  632. # undef __cdecl
  633. #endif
  634. #ifdef GLUT_DEFINED__CRTIMP
  635. # undef GLUT_DEFINED__CRTIMP
  636. # undef _CRTIMP
  637. #endif
  638. #endif                  /* __glut_h__ */