visualinfo.c 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297
  1. /*
  2. ** visualinfo.c
  3. **
  4. ** Copyright (C) Nate Robins, 1997
  5. ** Michael Wimmer, 1999
  6. ** Milan Ikits, 2002-2008
  7. ** Nigel Stewart, 2008-2019
  8. **
  9. ** visualinfo is a small utility that displays all available visuals,
  10. ** aka. pixelformats, in an OpenGL system along with renderer version
  11. ** information. It shows a table of all the visuals that support OpenGL
  12. ** along with their capabilities. The format of the table is similar to
  13. ** that of glxinfo on Unix systems:
  14. **
  15. ** visual ~= pixel format descriptor
  16. ** id = visual id (integer from 1 - max visuals)
  17. ** tp = type (wn: window, pb: pbuffer, wp: window & pbuffer, bm: bitmap)
  18. ** ac = acceleration (ge: generic, fu: full, no: none)
  19. ** fm = format (i: integer, f: float, c: color index)
  20. ** db = double buffer (y = yes)
  21. ** sw = swap method (x: exchange, c: copy, u: undefined)
  22. ** st = stereo (y = yes)
  23. ** sz = total # bits
  24. ** r = # bits of red
  25. ** g = # bits of green
  26. ** b = # bits of blue
  27. ** a = # bits of alpha
  28. ** axbf = # aux buffers
  29. ** dpth = # bits of depth
  30. ** stcl = # bits of stencil
  31. */
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #include <GL/glew.h>
  36. #if defined(GLEW_OSMESA)
  37. #define GLAPI extern
  38. #include <GL/osmesa.h>
  39. #elif defined(GLEW_EGL)
  40. #include <GL/eglew.h>
  41. #elif defined(_WIN32)
  42. #include <GL/wglew.h>
  43. #elif defined(__APPLE__) && !defined(GLEW_APPLE_GLX)
  44. #include <OpenGL/OpenGL.h>
  45. #include <OpenGL/CGLTypes.h>
  46. #elif !defined(__HAIKU__)
  47. #include <GL/glxew.h>
  48. #endif
  49. #ifdef GLEW_MX
  50. GLEWContext _glewctx;
  51. # define glewGetContext() (&_glewctx)
  52. # ifdef _WIN32
  53. WGLEWContext _wglewctx;
  54. # define wglewGetContext() (&_wglewctx)
  55. # elif !defined(__APPLE__) && !defined(__HAIKU__) || defined(GLEW_APPLE_GLX)
  56. GLXEWContext _glxewctx;
  57. # define glxewGetContext() (&_glxewctx)
  58. # endif
  59. #endif /* GLEW_MX */
  60. typedef struct GLContextStruct
  61. {
  62. #if defined(GLEW_OSMESA)
  63. OSMesaContext ctx;
  64. #elif defined(GLEW_EGL)
  65. EGLContext ctx;
  66. #elif defined(_WIN32)
  67. HWND wnd;
  68. HDC dc;
  69. HGLRC rc;
  70. #elif defined(__APPLE__) && !defined(GLEW_APPLE_GLX)
  71. CGLContextObj ctx, octx;
  72. #elif !defined(__HAIKU__)
  73. Display* dpy;
  74. XVisualInfo* vi;
  75. GLXContext ctx;
  76. Window wnd;
  77. Colormap cmap;
  78. #endif
  79. } GLContext;
  80. void InitContext (GLContext* ctx);
  81. GLboolean CreateContext (GLContext* ctx);
  82. void DestroyContext (GLContext* ctx);
  83. void VisualInfo (GLContext* ctx);
  84. void PrintExtensions (const char* s);
  85. GLboolean ParseArgs (int argc, char** argv);
  86. int showall = 0;
  87. int displaystdout = 0;
  88. int verbose = 0;
  89. int drawableonly = 0;
  90. char* display = NULL;
  91. int visual = -1;
  92. FILE* file = 0;
  93. int
  94. main (int argc, char** argv)
  95. {
  96. GLenum err;
  97. GLContext ctx;
  98. /* ---------------------------------------------------------------------- */
  99. /* parse arguments */
  100. if (GL_TRUE == ParseArgs(argc-1, argv+1))
  101. {
  102. #if defined(_WIN32)
  103. fprintf(stderr, "Usage: visualinfo [-a] [-s] [-h] [-pf <id>]\n");
  104. fprintf(stderr, " -a: show all visuals\n");
  105. fprintf(stderr, " -s: display to stdout instead of visualinfo.txt\n");
  106. fprintf(stderr, " -pf <id>: use given pixelformat\n");
  107. fprintf(stderr, " -h: this screen\n");
  108. #else
  109. fprintf(stderr, "Usage: visualinfo [-h] [-display <display>] [-visual <id>]\n");
  110. fprintf(stderr, " -h: this screen\n");
  111. fprintf(stderr, " -display <display>: use given display\n");
  112. fprintf(stderr, " -visual <id>: use given visual\n");
  113. #endif
  114. return 1;
  115. }
  116. /* ---------------------------------------------------------------------- */
  117. /* create OpenGL rendering context */
  118. InitContext(&ctx);
  119. if (GL_TRUE == CreateContext(&ctx))
  120. {
  121. fprintf(stderr, "Error: CreateContext failed\n");
  122. DestroyContext(&ctx);
  123. return 1;
  124. }
  125. /* ---------------------------------------------------------------------- */
  126. /* initialize GLEW */
  127. glewExperimental = GL_TRUE;
  128. #ifdef GLEW_MX
  129. err = glewContextInit(glewGetContext());
  130. # ifdef _WIN32
  131. err = err || wglewContextInit(wglewGetContext());
  132. # elif !defined(__APPLE__) && !defined(__HAIKU__) || defined(GLEW_APPLE_GLX)
  133. err = err || glxewContextInit(glxewGetContext());
  134. # endif
  135. #else
  136. err = glewInit();
  137. #endif
  138. if (GLEW_OK != err)
  139. {
  140. fprintf(stderr, "Error [main]: glewInit failed: %s\n", glewGetErrorString(err));
  141. DestroyContext(&ctx);
  142. return 1;
  143. }
  144. /* ---------------------------------------------------------------------- */
  145. /* open file */
  146. #if defined(_WIN32)
  147. if (!displaystdout)
  148. {
  149. #if defined(_MSC_VER) && (_MSC_VER >= 1400)
  150. if (fopen_s(&file, "visualinfo.txt", "w") != 0)
  151. file = stdout;
  152. #else
  153. file = fopen("visualinfo.txt", "w");
  154. #endif
  155. }
  156. if (file == NULL)
  157. file = stdout;
  158. #else
  159. file = stdout;
  160. #endif
  161. /* ---------------------------------------------------------------------- */
  162. /* output header information */
  163. /* OpenGL extensions */
  164. fprintf(file, "OpenGL vendor string: %s\n", glGetString(GL_VENDOR));
  165. fprintf(file, "OpenGL renderer string: %s\n", glGetString(GL_RENDERER));
  166. fprintf(file, "OpenGL version string: %s\n", glGetString(GL_VERSION));
  167. fprintf(file, "OpenGL extensions (GL_): \n");
  168. PrintExtensions((const char*)glGetString(GL_EXTENSIONS));
  169. #ifndef GLEW_NO_GLU
  170. /* GLU extensions */
  171. fprintf(file, "GLU version string: %s\n", gluGetString(GLU_VERSION));
  172. fprintf(file, "GLU extensions (GLU_): \n");
  173. PrintExtensions((const char*)gluGetString(GLU_EXTENSIONS));
  174. #endif
  175. /* ---------------------------------------------------------------------- */
  176. /* extensions string */
  177. #if defined(GLEW_OSMESA)
  178. #elif defined(GLEW_EGL)
  179. #elif defined(_WIN32)
  180. /* WGL extensions */
  181. if (WGLEW_ARB_extensions_string || WGLEW_EXT_extensions_string)
  182. {
  183. fprintf(file, "WGL extensions (WGL_): \n");
  184. PrintExtensions(wglGetExtensionsStringARB ?
  185. (const char*)wglGetExtensionsStringARB(ctx.dc) :
  186. (const char*)wglGetExtensionsStringEXT());
  187. }
  188. #elif defined(__APPLE__) && !defined(GLEW_APPLE_GLX)
  189. #elif defined(__HAIKU__)
  190. /* TODO */
  191. #else
  192. /* GLX extensions */
  193. fprintf(file, "GLX extensions (GLX_): \n");
  194. PrintExtensions(glXQueryExtensionsString(glXGetCurrentDisplay(),
  195. DefaultScreen(glXGetCurrentDisplay())));
  196. #endif
  197. /* ---------------------------------------------------------------------- */
  198. /* enumerate all the formats */
  199. VisualInfo(&ctx);
  200. /* ---------------------------------------------------------------------- */
  201. /* release resources */
  202. DestroyContext(&ctx);
  203. if (file != stdout)
  204. fclose(file);
  205. return 0;
  206. }
  207. /* do the magic to separate all extensions with comma's, except
  208. for the last one that _may_ terminate in a space. */
  209. void PrintExtensions (const char* s)
  210. {
  211. char t[80];
  212. int i=0;
  213. char* p=0;
  214. t[79] = '\0';
  215. while (*s)
  216. {
  217. t[i++] = *s;
  218. if(*s == ' ')
  219. {
  220. if (*(s+1) != '\0') {
  221. t[i-1] = ',';
  222. t[i] = ' ';
  223. p = &t[i++];
  224. }
  225. else /* zoinks! last one terminated in a space! */
  226. {
  227. t[i-1] = '\0';
  228. }
  229. }
  230. if(i > 80 - 5)
  231. {
  232. *p = t[i] = '\0';
  233. fprintf(file, " %s\n", t);
  234. p++;
  235. i = (int)strlen(p);
  236. #if defined(_MSC_VER) && (_MSC_VER >= 1400)
  237. strcpy_s(t, sizeof(t), p);
  238. #else
  239. strcpy(t, p);
  240. #endif
  241. }
  242. s++;
  243. }
  244. t[i] = '\0';
  245. fprintf(file, " %s.\n", t);
  246. }
  247. /* ---------------------------------------------------------------------- */
  248. #if defined(GLEW_OSMESA) || defined(GLEW_EGL)
  249. void
  250. VisualInfo (GLContext* ctx)
  251. {
  252. }
  253. #elif defined(_WIN32)
  254. void
  255. VisualInfoARB (GLContext* ctx)
  256. {
  257. int attrib[32], value[32], n_attrib, n_pbuffer=0, n_float=0;
  258. int i, pf, maxpf;
  259. unsigned int c;
  260. /* to get pbuffer capable pixel formats */
  261. attrib[0] = WGL_DRAW_TO_PBUFFER_ARB;
  262. attrib[1] = GL_TRUE;
  263. attrib[2] = 0;
  264. wglChoosePixelFormatARB(ctx->dc, attrib, 0, 1, &pf, &c);
  265. /* query number of pixel formats */
  266. attrib[0] = WGL_NUMBER_PIXEL_FORMATS_ARB;
  267. wglGetPixelFormatAttribivARB(ctx->dc, 0, 0, 1, attrib, value);
  268. maxpf = value[0];
  269. for (i=0; i<32; i++)
  270. value[i] = 0;
  271. attrib[0] = WGL_SUPPORT_OPENGL_ARB;
  272. attrib[1] = WGL_DRAW_TO_WINDOW_ARB;
  273. attrib[2] = WGL_DRAW_TO_BITMAP_ARB;
  274. attrib[3] = WGL_ACCELERATION_ARB;
  275. /* WGL_NO_ACCELERATION_ARB, WGL_GENERIC_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB */
  276. attrib[4] = WGL_SWAP_METHOD_ARB;
  277. /* WGL_SWAP_EXCHANGE_ARB, WGL_SWAP_COPY_ARB, WGL_SWAP_UNDEFINED_ARB */
  278. attrib[5] = WGL_DOUBLE_BUFFER_ARB;
  279. attrib[6] = WGL_STEREO_ARB;
  280. attrib[7] = WGL_PIXEL_TYPE_ARB;
  281. /* WGL_TYPE_RGBA_ARB, WGL_TYPE_COLORINDEX_ARB,
  282. WGL_TYPE_RGBA_FLOAT_ATI (WGL_ATI_pixel_format_float) */
  283. /* Color buffer information */
  284. attrib[8] = WGL_COLOR_BITS_ARB;
  285. attrib[9] = WGL_RED_BITS_ARB;
  286. attrib[10] = WGL_GREEN_BITS_ARB;
  287. attrib[11] = WGL_BLUE_BITS_ARB;
  288. attrib[12] = WGL_ALPHA_BITS_ARB;
  289. /* Accumulation buffer information */
  290. attrib[13] = WGL_ACCUM_BITS_ARB;
  291. attrib[14] = WGL_ACCUM_RED_BITS_ARB;
  292. attrib[15] = WGL_ACCUM_GREEN_BITS_ARB;
  293. attrib[16] = WGL_ACCUM_BLUE_BITS_ARB;
  294. attrib[17] = WGL_ACCUM_ALPHA_BITS_ARB;
  295. /* Depth, stencil, and aux buffer information */
  296. attrib[18] = WGL_DEPTH_BITS_ARB;
  297. attrib[19] = WGL_STENCIL_BITS_ARB;
  298. attrib[20] = WGL_AUX_BUFFERS_ARB;
  299. /* Layer information */
  300. attrib[21] = WGL_NUMBER_OVERLAYS_ARB;
  301. attrib[22] = WGL_NUMBER_UNDERLAYS_ARB;
  302. attrib[23] = WGL_SWAP_LAYER_BUFFERS_ARB;
  303. attrib[24] = WGL_SAMPLES_ARB;
  304. attrib[25] = WGL_SUPPORT_GDI_ARB;
  305. n_attrib = 26;
  306. if (WGLEW_ARB_pbuffer)
  307. {
  308. attrib[n_attrib] = WGL_DRAW_TO_PBUFFER_ARB;
  309. n_pbuffer = n_attrib;
  310. n_attrib++;
  311. }
  312. if (WGLEW_NV_float_buffer)
  313. {
  314. attrib[n_attrib] = WGL_FLOAT_COMPONENTS_NV;
  315. n_float = n_attrib;
  316. n_attrib++;
  317. }
  318. if (!verbose)
  319. {
  320. /* print table header */
  321. fprintf(file, " +-----+-------------------------+-----------------+----------+-----------------+----------+\n");
  322. fprintf(file, " | | visual | color | ax dp st | accum | layer |\n");
  323. fprintf(file, " | id | tp ac gd fm db sw st ms | sz r g b a | bf th cl | sz r g b a | ov un sw |\n");
  324. fprintf(file, " +-----+-------------------------+-----------------+----------+-----------------+----------+\n");
  325. /* loop through all the pixel formats */
  326. for(i = 1; i <= maxpf; i++)
  327. {
  328. wglGetPixelFormatAttribivARB(ctx->dc, i, 0, n_attrib, attrib, value);
  329. /* only describe this format if it supports OpenGL */
  330. if (!value[0]) continue;
  331. /* by default show only fully accelerated window or pbuffer capable visuals */
  332. if (!showall
  333. && ((value[2] && !value[1])
  334. || (!WGLEW_ARB_pbuffer || !value[n_pbuffer])
  335. || (value[3] != WGL_FULL_ACCELERATION_ARB))) continue;
  336. /* print out the information for this visual */
  337. /* visual id */
  338. fprintf(file, " |% 4d | ", i);
  339. /* visual type */
  340. if (value[1])
  341. {
  342. if (WGLEW_ARB_pbuffer && value[n_pbuffer]) fprintf(file, "wp ");
  343. else fprintf(file, "wn ");
  344. }
  345. else
  346. {
  347. if (value[2]) fprintf(file, "bm ");
  348. else if (WGLEW_ARB_pbuffer && value[n_pbuffer]) fprintf(file, "pb ");
  349. }
  350. /* acceleration */
  351. fprintf(file, "%s ", value[3] == WGL_FULL_ACCELERATION_ARB ? "fu" :
  352. value[3] == WGL_GENERIC_ACCELERATION_ARB ? "ge" :
  353. value[3] == WGL_NO_ACCELERATION_ARB ? "no" : ". ");
  354. /* gdi support */
  355. fprintf(file, " %c ", value[25] ? 'y' : '.');
  356. /* format */
  357. if (WGLEW_NV_float_buffer && value[n_float]) fprintf(file, " f ");
  358. else if (WGLEW_ATI_pixel_format_float && value[7] == WGL_TYPE_RGBA_FLOAT_ATI) fprintf(file, " f ");
  359. else if (value[7] == WGL_TYPE_RGBA_ARB) fprintf(file, " i ");
  360. else if (value[7] == WGL_TYPE_COLORINDEX_ARB) fprintf(file, " c ");
  361. else if (value[7] == WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT) fprintf(file," p ");
  362. else fprintf(file," ? ");
  363. /* double buffer */
  364. fprintf(file, " %c ", value[5] ? 'y' : '.');
  365. /* swap method */
  366. if (value[4] == WGL_SWAP_EXCHANGE_ARB) fprintf(file, " x ");
  367. else if (value[4] == WGL_SWAP_COPY_ARB) fprintf(file, " c ");
  368. else if (value[4] == WGL_SWAP_UNDEFINED_ARB) fprintf(file, " . ");
  369. else fprintf(file, " . ");
  370. /* stereo */
  371. fprintf(file, " %c ", value[6] ? 'y' : '.');
  372. /* multisample */
  373. if (value[24] > 0)
  374. fprintf(file, "%2d | ", value[24]);
  375. else
  376. fprintf(file, " . | ");
  377. /* color size */
  378. if (value[8]) fprintf(file, "%3d ", value[8]);
  379. else fprintf(file, " . ");
  380. /* red */
  381. if (value[9]) fprintf(file, "%2d ", value[9]);
  382. else fprintf(file, " . ");
  383. /* green */
  384. if (value[10]) fprintf(file, "%2d ", value[10]);
  385. else fprintf(file, " . ");
  386. /* blue */
  387. if (value[11]) fprintf(file, "%2d ", value[11]);
  388. else fprintf(file, " . ");
  389. /* alpha */
  390. if (value[12]) fprintf(file, "%2d | ", value[12]);
  391. else fprintf(file, " . | ");
  392. /* aux buffers */
  393. if (value[20]) fprintf(file, "%2d ", value[20]);
  394. else fprintf(file, " . ");
  395. /* depth */
  396. if (value[18]) fprintf(file, "%2d ", value[18]);
  397. else fprintf(file, " . ");
  398. /* stencil */
  399. if (value[19]) fprintf(file, "%2d | ", value[19]);
  400. else fprintf(file, " . | ");
  401. /* accum size */
  402. if (value[13]) fprintf(file, "%3d ", value[13]);
  403. else fprintf(file, " . ");
  404. /* accum red */
  405. if (value[14]) fprintf(file, "%2d ", value[14]);
  406. else fprintf(file, " . ");
  407. /* accum green */
  408. if (value[15]) fprintf(file, "%2d ", value[15]);
  409. else fprintf(file, " . ");
  410. /* accum blue */
  411. if (value[16]) fprintf(file, "%2d ", value[16]);
  412. else fprintf(file, " . ");
  413. /* accum alpha */
  414. if (value[17]) fprintf(file, "%2d | ", value[17]);
  415. else fprintf(file, " . | ");
  416. /* overlay */
  417. if (value[21]) fprintf(file, "%2d ", value[21]);
  418. else fprintf(file, " . ");
  419. /* underlay */
  420. if (value[22]) fprintf(file, "%2d ", value[22]);
  421. else fprintf(file, " . ");
  422. /* layer swap */
  423. if (value[23]) fprintf(file, "y ");
  424. else fprintf(file, " . ");
  425. fprintf(file, "|\n");
  426. }
  427. /* print table footer */
  428. fprintf(file, " +-----+-------------------------+-----------------+----------+-----------------+----------+\n");
  429. fprintf(file, " | | visual | color | ax dp st | accum | layer |\n");
  430. fprintf(file, " | id | tp ac gd fm db sw st ms | sz r g b a | bf th cl | sz r g b a | ov un sw |\n");
  431. fprintf(file, " +-----+-------------------------+-----------------+----------+-----------------+----------+\n");
  432. }
  433. else /* verbose */
  434. {
  435. #if 0
  436. fprintf(file, "\n");
  437. /* loop through all the pixel formats */
  438. for(i = 1; i <= maxpf; i++)
  439. {
  440. DescribePixelFormat(ctx->dc, i, sizeof(PIXELFORMATDESCRIPTOR), &pfd);
  441. /* only describe this format if it supports OpenGL */
  442. if(!(pfd.dwFlags & PFD_SUPPORT_OPENGL)
  443. || (drawableonly && !(pfd.dwFlags & PFD_DRAW_TO_WINDOW))) continue;
  444. fprintf(file, "Visual ID: %2d depth=%d class=%s\n", i, pfd.cDepthBits,
  445. pfd.cColorBits <= 8 ? "PseudoColor" : "TrueColor");
  446. fprintf(file, " bufferSize=%d level=%d renderType=%s doubleBuffer=%d stereo=%d\n", pfd.cColorBits, pfd.bReserved, pfd.iPixelType == PFD_TYPE_RGBA ? "rgba" : "ci", pfd.dwFlags & PFD_DOUBLEBUFFER, pfd.dwFlags & PFD_STEREO);
  447. fprintf(file, " generic=%d generic accelerated=%d\n", (pfd.dwFlags & PFD_GENERIC_FORMAT) == PFD_GENERIC_FORMAT, (pfd.dwFlags & PFD_GENERIC_ACCELERATED) == PFD_GENERIC_ACCELERATED);
  448. fprintf(file, " rgba: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n", pfd.cRedBits, pfd.cGreenBits, pfd.cBlueBits, pfd.cAlphaBits);
  449. fprintf(file, " auxBuffers=%d depthSize=%d stencilSize=%d\n", pfd.cAuxBuffers, pfd.cDepthBits, pfd.cStencilBits);
  450. fprintf(file, " accum: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n", pfd.cAccumRedBits, pfd.cAccumGreenBits, pfd.cAccumBlueBits, pfd.cAccumAlphaBits);
  451. fprintf(file, " multiSample=%d multisampleBuffers=%d\n", 0, 0);
  452. fprintf(file, " Opaque.\n");
  453. }
  454. #endif
  455. }
  456. }
  457. void
  458. VisualInfoGDI (GLContext* ctx)
  459. {
  460. int i, maxpf;
  461. PIXELFORMATDESCRIPTOR pfd;
  462. /* calling DescribePixelFormat() with NULL pfd (!!!) return maximum
  463. number of pixel formats */
  464. maxpf = DescribePixelFormat(ctx->dc, 1, 0, NULL);
  465. if (!verbose)
  466. {
  467. fprintf(file, "-----------------------------------------------------------------------------\n");
  468. fprintf(file, " visual x bf lv rg d st ge ge r g b a ax dp st accum buffs ms \n");
  469. fprintf(file, " id dep tp sp sz l ci b ro ne ac sz sz sz sz bf th cl sz r g b a ns b\n");
  470. fprintf(file, "-----------------------------------------------------------------------------\n");
  471. /* loop through all the pixel formats */
  472. for(i = 1; i <= maxpf; i++)
  473. {
  474. DescribePixelFormat(ctx->dc, i, sizeof(PIXELFORMATDESCRIPTOR), &pfd);
  475. /* only describe this format if it supports OpenGL */
  476. if(!(pfd.dwFlags & PFD_SUPPORT_OPENGL)
  477. || (drawableonly && (pfd.dwFlags & PFD_DRAW_TO_BITMAP))) continue;
  478. /* other criteria could be tested here for actual pixel format
  479. choosing in an application:
  480. for (...each pixel format...) {
  481. if (pfd.dwFlags & PFD_SUPPORT_OPENGL &&
  482. pfd.dwFlags & PFD_DOUBLEBUFFER &&
  483. pfd.cDepthBits >= 24 &&
  484. pfd.cColorBits >= 24)
  485. {
  486. goto found;
  487. }
  488. }
  489. ... not found so exit ...
  490. found:
  491. ... found so use it ...
  492. */
  493. /* print out the information for this pixel format */
  494. fprintf(file, "0x%02x ", i);
  495. fprintf(file, "%3d ", pfd.cColorBits);
  496. if(pfd.dwFlags & PFD_DRAW_TO_WINDOW) fprintf(file, "wn ");
  497. else if(pfd.dwFlags & PFD_DRAW_TO_BITMAP) fprintf(file, "bm ");
  498. else fprintf(file, "pb ");
  499. /* should find transparent pixel from LAYERPLANEDESCRIPTOR */
  500. fprintf(file, " . ");
  501. fprintf(file, "%3d ", pfd.cColorBits);
  502. /* bReserved field indicates number of over/underlays */
  503. if(pfd.bReserved) fprintf(file, " %d ", pfd.bReserved);
  504. else fprintf(file, " . ");
  505. fprintf(file, " %c ", pfd.iPixelType == PFD_TYPE_RGBA ? 'r' : 'c');
  506. fprintf(file, "%c ", pfd.dwFlags & PFD_DOUBLEBUFFER ? 'y' : '.');
  507. fprintf(file, " %c ", pfd.dwFlags & PFD_STEREO ? 'y' : '.');
  508. /* added: */
  509. fprintf(file, " %c ", pfd.dwFlags & PFD_GENERIC_FORMAT ? 'y' : '.');
  510. fprintf(file, " %c ", pfd.dwFlags & PFD_GENERIC_ACCELERATED ? 'y' : '.');
  511. if(pfd.cRedBits && pfd.iPixelType == PFD_TYPE_RGBA)
  512. fprintf(file, "%2d ", pfd.cRedBits);
  513. else fprintf(file, " . ");
  514. if(pfd.cGreenBits && pfd.iPixelType == PFD_TYPE_RGBA)
  515. fprintf(file, "%2d ", pfd.cGreenBits);
  516. else fprintf(file, " . ");
  517. if(pfd.cBlueBits && pfd.iPixelType == PFD_TYPE_RGBA)
  518. fprintf(file, "%2d ", pfd.cBlueBits);
  519. else fprintf(file, " . ");
  520. if(pfd.cAlphaBits && pfd.iPixelType == PFD_TYPE_RGBA)
  521. fprintf(file, "%2d ", pfd.cAlphaBits);
  522. else fprintf(file, " . ");
  523. if(pfd.cAuxBuffers) fprintf(file, "%2d ", pfd.cAuxBuffers);
  524. else fprintf(file, " . ");
  525. if(pfd.cDepthBits) fprintf(file, "%2d ", pfd.cDepthBits);
  526. else fprintf(file, " . ");
  527. if(pfd.cStencilBits) fprintf(file, "%2d ", pfd.cStencilBits);
  528. else fprintf(file, " . ");
  529. if(pfd.cAccumBits) fprintf(file, "%3d ", pfd.cAccumBits);
  530. else fprintf(file, " . ");
  531. if(pfd.cAccumRedBits) fprintf(file, "%2d ", pfd.cAccumRedBits);
  532. else fprintf(file, " . ");
  533. if(pfd.cAccumGreenBits) fprintf(file, "%2d ", pfd.cAccumGreenBits);
  534. else fprintf(file, " . ");
  535. if(pfd.cAccumBlueBits) fprintf(file, "%2d ", pfd.cAccumBlueBits);
  536. else fprintf(file, " . ");
  537. if(pfd.cAccumAlphaBits) fprintf(file, "%2d ", pfd.cAccumAlphaBits);
  538. else fprintf(file, " . ");
  539. /* no multisample in win32 */
  540. fprintf(file, " . .\n");
  541. }
  542. /* print table footer */
  543. fprintf(file, "-----------------------------------------------------------------------------\n");
  544. fprintf(file, " visual x bf lv rg d st ge ge r g b a ax dp st accum buffs ms \n");
  545. fprintf(file, " id dep tp sp sz l ci b ro ne ac sz sz sz sz bf th cl sz r g b a ns b\n");
  546. fprintf(file, "-----------------------------------------------------------------------------\n");
  547. }
  548. else /* verbose */
  549. {
  550. fprintf(file, "\n");
  551. /* loop through all the pixel formats */
  552. for(i = 1; i <= maxpf; i++)
  553. {
  554. DescribePixelFormat(ctx->dc, i, sizeof(PIXELFORMATDESCRIPTOR), &pfd);
  555. /* only describe this format if it supports OpenGL */
  556. if(!(pfd.dwFlags & PFD_SUPPORT_OPENGL)
  557. || (drawableonly && !(pfd.dwFlags & PFD_DRAW_TO_WINDOW))) continue;
  558. fprintf(file, "Visual ID: %2d depth=%d class=%s\n", i, pfd.cDepthBits,
  559. pfd.cColorBits <= 8 ? "PseudoColor" : "TrueColor");
  560. fprintf(file, " bufferSize=%d level=%d renderType=%s doubleBuffer=%ld stereo=%ld\n", pfd.cColorBits, pfd.bReserved, pfd.iPixelType == PFD_TYPE_RGBA ? "rgba" : "ci", (long) (pfd.dwFlags & PFD_DOUBLEBUFFER), (long) (pfd.dwFlags & PFD_STEREO));
  561. fprintf(file, " generic=%d generic accelerated=%d\n", (pfd.dwFlags & PFD_GENERIC_FORMAT) == PFD_GENERIC_FORMAT, (pfd.dwFlags & PFD_GENERIC_ACCELERATED) == PFD_GENERIC_ACCELERATED);
  562. fprintf(file, " rgba: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n", pfd.cRedBits, pfd.cGreenBits, pfd.cBlueBits, pfd.cAlphaBits);
  563. fprintf(file, " auxBuffers=%d depthSize=%d stencilSize=%d\n", pfd.cAuxBuffers, pfd.cDepthBits, pfd.cStencilBits);
  564. fprintf(file, " accum: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n", pfd.cAccumRedBits, pfd.cAccumGreenBits, pfd.cAccumBlueBits, pfd.cAccumAlphaBits);
  565. fprintf(file, " multiSample=%d multisampleBuffers=%d\n", 0, 0);
  566. fprintf(file, " Opaque.\n");
  567. }
  568. }
  569. }
  570. void
  571. VisualInfo (GLContext* ctx)
  572. {
  573. if (WGLEW_ARB_pixel_format)
  574. VisualInfoARB(ctx);
  575. else
  576. VisualInfoGDI(ctx);
  577. }
  578. /* ---------------------------------------------------------------------- */
  579. #elif defined(__APPLE__) && !defined(GLEW_APPLE_GLX)
  580. void
  581. VisualInfo (__attribute__((unused)) GLContext* ctx)
  582. {
  583. /*
  584. int attrib[] = { AGL_RGBA, AGL_NONE };
  585. AGLPixelFormat pf;
  586. GLint value;
  587. pf = aglChoosePixelFormat(NULL, 0, attrib);
  588. while (pf != NULL)
  589. {
  590. aglDescribePixelFormat(pf, GL_RGBA, &value);
  591. fprintf(stderr, "%d\n", value);
  592. pf = aglNextPixelFormat(pf);
  593. }
  594. */
  595. }
  596. /* ---------------------------------------------------------------------- */
  597. #elif defined(__HAIKU__)
  598. void
  599. VisualInfo (GLContext* ctx)
  600. {
  601. /* TODO */
  602. }
  603. #else /* GLX */
  604. void
  605. VisualInfo (GLContext* ctx)
  606. {
  607. int n_fbc;
  608. GLXFBConfig* fbc;
  609. int value, ret, i;
  610. fbc = glXGetFBConfigs(ctx->dpy, DefaultScreen(ctx->dpy), &n_fbc);
  611. if (fbc)
  612. {
  613. if (!verbose)
  614. {
  615. /* print table header */
  616. fprintf(file, " +-----+-------------------------+-----------------+----------+-------------+-------+------+\n");
  617. fprintf(file, " | | visual | color | ax dp st | accum | ms | cav |\n");
  618. fprintf(file, " | id | tp xr cl fm db st lv xp | sz r g b a | bf th cl | r g b a | ns b | eat |\n");
  619. fprintf(file, " +-----+-------------------------+-----------------+----------+-------------+-------+------+\n");
  620. /* loop through all the fbcs */
  621. for (i=0; i<n_fbc; i++)
  622. {
  623. /* print out the information for this fbc */
  624. /* visual id */
  625. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_FBCONFIG_ID, &value);
  626. if (ret != Success)
  627. {
  628. fprintf(file, "| ? |");
  629. }
  630. else
  631. {
  632. fprintf(file, " |% 4d | ", value);
  633. }
  634. /* visual type */
  635. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_DRAWABLE_TYPE, &value);
  636. if (ret != Success)
  637. {
  638. fprintf(file, " ? ");
  639. }
  640. else
  641. {
  642. if (value & GLX_WINDOW_BIT)
  643. {
  644. if (value & GLX_PBUFFER_BIT)
  645. {
  646. fprintf(file, "wp ");
  647. }
  648. else
  649. {
  650. fprintf(file, "wn ");
  651. }
  652. }
  653. else
  654. {
  655. if (value & GLX_PBUFFER_BIT)
  656. {
  657. fprintf(file, "pb ");
  658. }
  659. else if (value & GLX_PIXMAP_BIT)
  660. {
  661. fprintf(file, "pm ");
  662. }
  663. else
  664. {
  665. fprintf(file, " ? ");
  666. }
  667. }
  668. }
  669. /* x renderable */
  670. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_X_RENDERABLE, &value);
  671. if (ret != Success)
  672. {
  673. fprintf(file, " ? ");
  674. }
  675. else
  676. {
  677. fprintf(file, value ? " y " : " n ");
  678. }
  679. /* class */
  680. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_X_VISUAL_TYPE, &value);
  681. if (ret != Success)
  682. {
  683. fprintf(file, " ? ");
  684. }
  685. else
  686. {
  687. if (GLX_TRUE_COLOR == value)
  688. fprintf(file, "tc ");
  689. else if (GLX_DIRECT_COLOR == value)
  690. fprintf(file, "dc ");
  691. else if (GLX_PSEUDO_COLOR == value)
  692. fprintf(file, "pc ");
  693. else if (GLX_STATIC_COLOR == value)
  694. fprintf(file, "sc ");
  695. else if (GLX_GRAY_SCALE == value)
  696. fprintf(file, "gs ");
  697. else if (GLX_STATIC_GRAY == value)
  698. fprintf(file, "sg ");
  699. else if (GLX_X_VISUAL_TYPE == value)
  700. fprintf(file, " . ");
  701. else
  702. fprintf(file, " ? ");
  703. }
  704. /* format */
  705. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_RENDER_TYPE, &value);
  706. if (ret != Success)
  707. {
  708. fprintf(file, " ? ");
  709. }
  710. else
  711. {
  712. if (GLXEW_NV_float_buffer)
  713. {
  714. int ret2, value2;
  715. ret2 = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_FLOAT_COMPONENTS_NV, &value2);
  716. if (Success == ret2 && GL_TRUE == value2)
  717. {
  718. fprintf(file, " f ");
  719. }
  720. else if (value & GLX_RGBA_BIT)
  721. fprintf(file, " i ");
  722. else if (value & GLX_COLOR_INDEX_BIT)
  723. fprintf(file, " c ");
  724. else
  725. fprintf(file, " ? ");
  726. }
  727. else
  728. {
  729. if (value & GLX_RGBA_FLOAT_ATI_BIT)
  730. fprintf(file, " f ");
  731. else if (value & GLX_RGBA_BIT)
  732. fprintf(file, " i ");
  733. else if (value & GLX_COLOR_INDEX_BIT)
  734. fprintf(file, " c ");
  735. else
  736. fprintf(file, " ? ");
  737. }
  738. }
  739. /* double buffer */
  740. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_DOUBLEBUFFER, &value);
  741. fprintf(file, " %c ", Success != ret ? '?' : (value ? 'y' : '.'));
  742. /* stereo */
  743. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_STEREO, &value);
  744. fprintf(file, " %c ", Success != ret ? '?' : (value ? 'y' : '.'));
  745. /* level */
  746. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_LEVEL, &value);
  747. if (Success != ret)
  748. {
  749. fprintf(file, " ? ");
  750. }
  751. else
  752. {
  753. fprintf(file, "%2d ", value);
  754. }
  755. /* transparency */
  756. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_TRANSPARENT_TYPE, &value);
  757. if (Success != ret)
  758. {
  759. fprintf(file, " ? | ");
  760. }
  761. else
  762. {
  763. if (GLX_TRANSPARENT_RGB == value)
  764. fprintf(file, " r | ");
  765. else if (GLX_TRANSPARENT_INDEX == value)
  766. fprintf(file, " i | ");
  767. else if (GLX_NONE == value)
  768. fprintf(file, " . | ");
  769. else
  770. fprintf(file, " ? | ");
  771. }
  772. /* color size */
  773. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_BUFFER_SIZE, &value);
  774. if (Success != ret)
  775. {
  776. fprintf(file, " ? ");
  777. }
  778. else
  779. {
  780. if (value)
  781. fprintf(file, "%3d ", value);
  782. else
  783. fprintf(file, " . ");
  784. }
  785. /* red size */
  786. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_RED_SIZE, &value);
  787. if (Success != ret)
  788. {
  789. fprintf(file, " ? ");
  790. }
  791. else
  792. {
  793. if (value)
  794. fprintf(file, "%2d ", value);
  795. else
  796. fprintf(file, " . ");
  797. }
  798. /* green size */
  799. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_GREEN_SIZE, &value);
  800. if (Success != ret)
  801. {
  802. fprintf(file, " ? ");
  803. }
  804. else
  805. {
  806. if (value)
  807. fprintf(file, "%2d ", value);
  808. else
  809. fprintf(file, " . ");
  810. }
  811. /* blue size */
  812. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_BLUE_SIZE, &value);
  813. if (Success != ret)
  814. {
  815. fprintf(file, " ? ");
  816. }
  817. else
  818. {
  819. if (value)
  820. fprintf(file, "%2d ", value);
  821. else
  822. fprintf(file, " . ");
  823. }
  824. /* alpha size */
  825. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_ALPHA_SIZE, &value);
  826. if (Success != ret)
  827. {
  828. fprintf(file, " ? | ");
  829. }
  830. else
  831. {
  832. if (value)
  833. fprintf(file, "%2d | ", value);
  834. else
  835. fprintf(file, " . | ");
  836. }
  837. /* aux buffers */
  838. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_AUX_BUFFERS, &value);
  839. if (Success != ret)
  840. {
  841. fprintf(file, " ? ");
  842. }
  843. else
  844. {
  845. if (value)
  846. fprintf(file, "%2d ", value);
  847. else
  848. fprintf(file, " . ");
  849. }
  850. /* depth size */
  851. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_DEPTH_SIZE, &value);
  852. if (Success != ret)
  853. {
  854. fprintf(file, " ? ");
  855. }
  856. else
  857. {
  858. if (value)
  859. fprintf(file, "%2d ", value);
  860. else
  861. fprintf(file, " . ");
  862. }
  863. /* stencil size */
  864. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_STENCIL_SIZE, &value);
  865. if (Success != ret)
  866. {
  867. fprintf(file, " ? | ");
  868. }
  869. else
  870. {
  871. if (value)
  872. fprintf(file, "%2d | ", value);
  873. else
  874. fprintf(file, " . | ");
  875. }
  876. /* accum red size */
  877. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_ACCUM_RED_SIZE, &value);
  878. if (Success != ret)
  879. {
  880. fprintf(file, " ? ");
  881. }
  882. else
  883. {
  884. if (value)
  885. fprintf(file, "%2d ", value);
  886. else
  887. fprintf(file, " . ");
  888. }
  889. /* accum green size */
  890. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_ACCUM_GREEN_SIZE, &value);
  891. if (Success != ret)
  892. {
  893. fprintf(file, " ? ");
  894. }
  895. else
  896. {
  897. if (value)
  898. fprintf(file, "%2d ", value);
  899. else
  900. fprintf(file, " . ");
  901. }
  902. /* accum blue size */
  903. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_ACCUM_BLUE_SIZE, &value);
  904. if (Success != ret)
  905. {
  906. fprintf(file, " ? ");
  907. }
  908. else
  909. {
  910. if (value)
  911. fprintf(file, "%2d ", value);
  912. else
  913. fprintf(file, " . ");
  914. }
  915. /* accum alpha size */
  916. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_ACCUM_ALPHA_SIZE, &value);
  917. if (Success != ret)
  918. {
  919. fprintf(file, " ? | ");
  920. }
  921. else
  922. {
  923. if (value)
  924. fprintf(file, "%2d | ", value);
  925. else
  926. fprintf(file, " . | ");
  927. }
  928. /* multisample */
  929. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_SAMPLES, &value);
  930. if (Success != ret)
  931. {
  932. fprintf(file, " ? ");
  933. }
  934. else
  935. {
  936. fprintf(file, "%2d ", value);
  937. }
  938. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_SAMPLE_BUFFERS, &value);
  939. if (Success != ret)
  940. {
  941. fprintf(file, " ? | ");
  942. }
  943. else
  944. {
  945. fprintf(file, "%2d | ", value);
  946. }
  947. /* caveat */
  948. ret = glXGetFBConfigAttrib(ctx->dpy, fbc[i], GLX_CONFIG_CAVEAT, &value);
  949. if (Success != ret)
  950. {
  951. fprintf(file, "???? |");
  952. }
  953. else
  954. {
  955. if (GLX_NONE == value)
  956. fprintf(file, "none |\n");
  957. else if (GLX_SLOW_CONFIG == value)
  958. fprintf(file, "slow |\n");
  959. else if (GLX_NON_CONFORMANT_CONFIG == value)
  960. fprintf(file, "ncft |\n");
  961. else
  962. fprintf(file, "???? |\n");
  963. }
  964. }
  965. /* print table footer */
  966. fprintf(file, " +-----+-------------------------+-----------------+----------+-------------+-------+------+\n");
  967. fprintf(file, " | id | tp xr cl fm db st lv xp | sz r g b a | bf th cl | r g b a | ns b | eat |\n");
  968. fprintf(file, " | | visual | color | ax dp st | accum | ms | cav |\n");
  969. fprintf(file, " +-----+-------------------------+-----------------+----------+-------------+-------+------+\n");
  970. }
  971. }
  972. }
  973. #endif
  974. /* ------------------------------------------------------------------------ */
  975. #if defined(GLEW_OSMESA)
  976. void InitContext (GLContext* ctx)
  977. {
  978. ctx->ctx = NULL;
  979. }
  980. static const GLint osmFormat = GL_UNSIGNED_BYTE;
  981. static const GLint osmWidth = 640;
  982. static const GLint osmHeight = 480;
  983. static GLubyte *osmPixels = NULL;
  984. GLboolean CreateContext (GLContext* ctx)
  985. {
  986. if (NULL == ctx) return GL_TRUE;
  987. ctx->ctx = OSMesaCreateContext(OSMESA_RGBA, NULL);
  988. if (NULL == ctx->ctx) return GL_TRUE;
  989. if (NULL == osmPixels)
  990. {
  991. osmPixels = (GLubyte *) calloc(osmWidth*osmHeight*4, 1);
  992. }
  993. if (!OSMesaMakeCurrent(ctx->ctx, osmPixels, GL_UNSIGNED_BYTE, osmWidth, osmHeight))
  994. {
  995. return GL_TRUE;
  996. }
  997. return GL_FALSE;
  998. }
  999. void DestroyContext (GLContext* ctx)
  1000. {
  1001. if (NULL == ctx) return;
  1002. if (NULL != ctx->ctx) OSMesaDestroyContext(ctx->ctx);
  1003. }
  1004. /* ------------------------------------------------------------------------ */
  1005. #elif defined(GLEW_EGL)
  1006. void InitContext (GLContext* ctx)
  1007. {
  1008. ctx->ctx = NULL;
  1009. }
  1010. GLboolean CreateContext (GLContext* ctx)
  1011. {
  1012. return GL_FALSE;
  1013. }
  1014. void DestroyContext (GLContext* ctx)
  1015. {
  1016. if (NULL == ctx) return;
  1017. return;
  1018. }
  1019. /* ------------------------------------------------------------------------ */
  1020. #elif defined(_WIN32)
  1021. void InitContext (GLContext* ctx)
  1022. {
  1023. ctx->wnd = NULL;
  1024. ctx->dc = NULL;
  1025. ctx->rc = NULL;
  1026. }
  1027. GLboolean CreateContext (GLContext* ctx)
  1028. {
  1029. WNDCLASS wc;
  1030. PIXELFORMATDESCRIPTOR pfd;
  1031. /* check for input */
  1032. if (NULL == ctx) return GL_TRUE;
  1033. /* register window class */
  1034. ZeroMemory(&wc, sizeof(WNDCLASS));
  1035. wc.hInstance = GetModuleHandle(NULL);
  1036. wc.lpfnWndProc = DefWindowProc;
  1037. wc.lpszClassName = "GLEW";
  1038. if (0 == RegisterClass(&wc)) return GL_TRUE;
  1039. /* create window */
  1040. ctx->wnd = CreateWindow("GLEW", "GLEW", 0, CW_USEDEFAULT, CW_USEDEFAULT,
  1041. CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL,
  1042. GetModuleHandle(NULL), NULL);
  1043. if (NULL == ctx->wnd) return GL_TRUE;
  1044. /* get the device context */
  1045. ctx->dc = GetDC(ctx->wnd);
  1046. if (NULL == ctx->dc) return GL_TRUE;
  1047. /* find pixel format */
  1048. ZeroMemory(&pfd, sizeof(PIXELFORMATDESCRIPTOR));
  1049. if (visual == -1) /* find default */
  1050. {
  1051. pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
  1052. pfd.nVersion = 1;
  1053. pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
  1054. visual = ChoosePixelFormat(ctx->dc, &pfd);
  1055. if (0 == visual) return GL_TRUE;
  1056. }
  1057. /* set the pixel format for the dc */
  1058. if (FALSE == SetPixelFormat(ctx->dc, visual, &pfd)) return GL_TRUE;
  1059. /* create rendering context */
  1060. ctx->rc = wglCreateContext(ctx->dc);
  1061. if (NULL == ctx->rc) return GL_TRUE;
  1062. if (FALSE == wglMakeCurrent(ctx->dc, ctx->rc)) return GL_TRUE;
  1063. return GL_FALSE;
  1064. }
  1065. void DestroyContext (GLContext* ctx)
  1066. {
  1067. if (NULL == ctx) return;
  1068. if (NULL != ctx->rc) wglMakeCurrent(NULL, NULL);
  1069. if (NULL != ctx->rc) wglDeleteContext(wglGetCurrentContext());
  1070. if (NULL != ctx->wnd && NULL != ctx->dc) ReleaseDC(ctx->wnd, ctx->dc);
  1071. if (NULL != ctx->wnd) DestroyWindow(ctx->wnd);
  1072. UnregisterClass("GLEW", GetModuleHandle(NULL));
  1073. }
  1074. /* ------------------------------------------------------------------------ */
  1075. #elif defined(__APPLE__) && !defined(GLEW_APPLE_GLX)
  1076. void InitContext (GLContext* ctx)
  1077. {
  1078. ctx->ctx = NULL;
  1079. ctx->octx = NULL;
  1080. }
  1081. GLboolean CreateContext (GLContext* ctx)
  1082. {
  1083. CGLPixelFormatAttribute attrib[] = { kCGLPFAAccelerated, 0 };
  1084. CGLPixelFormatObj pf;
  1085. GLint npix;
  1086. CGLError error;
  1087. /* check input */
  1088. if (NULL == ctx) return GL_TRUE;
  1089. error = CGLChoosePixelFormat(attrib, &pf, &npix);
  1090. if (error) return GL_TRUE;
  1091. error = CGLCreateContext(pf, NULL, &ctx->ctx);
  1092. if (error) return GL_TRUE;
  1093. CGLReleasePixelFormat(pf);
  1094. ctx->octx = CGLGetCurrentContext();
  1095. error = CGLSetCurrentContext(ctx->ctx);
  1096. if (error) return GL_TRUE;
  1097. return GL_FALSE;
  1098. }
  1099. void DestroyContext (GLContext* ctx)
  1100. {
  1101. if (NULL == ctx) return;
  1102. CGLSetCurrentContext(ctx->octx);
  1103. if (NULL != ctx->ctx) CGLReleaseContext(ctx->ctx);
  1104. }
  1105. /* ------------------------------------------------------------------------ */
  1106. #elif defined(__HAIKU__)
  1107. void
  1108. InitContext (GLContext* ctx)
  1109. {
  1110. /* TODO */
  1111. }
  1112. GLboolean
  1113. CreateContext (GLContext* ctx)
  1114. {
  1115. /* TODO */
  1116. return GL_FALSE;
  1117. }
  1118. void
  1119. DestroyContext (GLContext* ctx)
  1120. {
  1121. /* TODO */
  1122. }
  1123. /* ------------------------------------------------------------------------ */
  1124. #else /* __UNIX || (__APPLE__ && GLEW_APPLE_GLX) */
  1125. void InitContext (GLContext* ctx)
  1126. {
  1127. ctx->dpy = NULL;
  1128. ctx->vi = NULL;
  1129. ctx->ctx = NULL;
  1130. ctx->wnd = 0;
  1131. ctx->cmap = 0;
  1132. }
  1133. GLboolean CreateContext (GLContext* ctx)
  1134. {
  1135. int attrib[] = { GLX_RGBA, GLX_DOUBLEBUFFER, None };
  1136. int erb, evb;
  1137. XSetWindowAttributes swa;
  1138. /* check input */
  1139. if (NULL == ctx) return GL_TRUE;
  1140. /* open display */
  1141. ctx->dpy = XOpenDisplay(display);
  1142. if (NULL == ctx->dpy) return GL_TRUE;
  1143. /* query for glx */
  1144. if (!glXQueryExtension(ctx->dpy, &erb, &evb)) return GL_TRUE;
  1145. /* choose visual */
  1146. ctx->vi = glXChooseVisual(ctx->dpy, DefaultScreen(ctx->dpy), attrib);
  1147. if (NULL == ctx->vi) return GL_TRUE;
  1148. /* create context */
  1149. ctx->ctx = glXCreateContext(ctx->dpy, ctx->vi, None, True);
  1150. if (NULL == ctx->ctx) return GL_TRUE;
  1151. /* create window */
  1152. /*wnd = XCreateSimpleWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 1, 1, 1, 0, 0);*/
  1153. ctx->cmap = XCreateColormap(ctx->dpy, RootWindow(ctx->dpy, ctx->vi->screen),
  1154. ctx->vi->visual, AllocNone);
  1155. swa.border_pixel = 0;
  1156. swa.colormap = ctx->cmap;
  1157. ctx->wnd = XCreateWindow(ctx->dpy, RootWindow(ctx->dpy, ctx->vi->screen),
  1158. 0, 0, 1, 1, 0, ctx->vi->depth, InputOutput, ctx->vi->visual,
  1159. CWBorderPixel | CWColormap, &swa);
  1160. /* make context current */
  1161. if (!glXMakeCurrent(ctx->dpy, ctx->wnd, ctx->ctx)) return GL_TRUE;
  1162. return GL_FALSE;
  1163. }
  1164. void DestroyContext (GLContext* ctx)
  1165. {
  1166. if (NULL != ctx->dpy && NULL != ctx->ctx) glXDestroyContext(ctx->dpy, ctx->ctx);
  1167. if (NULL != ctx->dpy && 0 != ctx->wnd) XDestroyWindow(ctx->dpy, ctx->wnd);
  1168. if (NULL != ctx->dpy && 0 != ctx->cmap) XFreeColormap(ctx->dpy, ctx->cmap);
  1169. if (NULL != ctx->vi) XFree(ctx->vi);
  1170. if (NULL != ctx->dpy) XCloseDisplay(ctx->dpy);
  1171. }
  1172. #endif /* __UNIX || (__APPLE__ && GLEW_APPLE_GLX) */
  1173. GLboolean ParseArgs (int argc, char** argv)
  1174. {
  1175. int p = 0;
  1176. while (p < argc)
  1177. {
  1178. #if defined(_WIN32)
  1179. if (!strcmp(argv[p], "-pf") || !strcmp(argv[p], "-pixelformat"))
  1180. {
  1181. if (++p >= argc) return GL_TRUE;
  1182. display = NULL;
  1183. visual = strtol(argv[p], NULL, 0);
  1184. }
  1185. else if (!strcmp(argv[p], "-a"))
  1186. {
  1187. showall = 1;
  1188. }
  1189. else if (!strcmp(argv[p], "-s"))
  1190. {
  1191. displaystdout = 1;
  1192. }
  1193. else if (!strcmp(argv[p], "-h"))
  1194. {
  1195. return GL_TRUE;
  1196. }
  1197. else
  1198. return GL_TRUE;
  1199. #else
  1200. if (!strcmp(argv[p], "-display"))
  1201. {
  1202. if (++p >= argc) return GL_TRUE;
  1203. display = argv[p];
  1204. }
  1205. else if (!strcmp(argv[p], "-visual"))
  1206. {
  1207. if (++p >= argc) return GL_TRUE;
  1208. visual = (int)strtol(argv[p], NULL, 0);
  1209. }
  1210. else if (!strcmp(argv[p], "-h"))
  1211. {
  1212. return GL_TRUE;
  1213. }
  1214. else
  1215. return GL_TRUE;
  1216. #endif
  1217. p++;
  1218. }
  1219. return GL_FALSE;
  1220. }