this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

src/OpenGL: Add missing stuff for glut

Thomas A ea040115 4414a4d0

+14
+12
src/OpenGL/OpenGL.c
··· 339 339 fprintf(stderr, "CGLGetParameter unimplemented for parameter %d\n", parameter); 340 340 return kCGLNoError; 341 341 } 342 + 343 + CGLError CGLDescribeRenderer(CGLRendererInfoObj rend, long rend_num, CGLRendererProperty prop, long *value) { 344 + return kCGLNoError; 345 + } 346 + 347 + CGLError CGLQueryRendererInfo(unsigned long display_mask, CGLRendererInfoObj *rend, long *nrend) { 348 + return kCGLNoError; 349 + } 350 + 351 + CGLError CGLDestroyRendererInfo(CGLRendererInfoObj rend) { 352 + return kCGLNoError; 353 + }
src/OpenGL/include/OpenGL/CGLCurrent.h

This is a binary file and will not be displayed.

+2
src/OpenGL/include/OpenGL/CGLTypes.h
··· 93 93 kCGLRPDepthModes = 105, 94 94 kCGLRPStencilModes = 106, 95 95 kCGLRPMaxAuxBuffers = 107, 96 + kCGLRPMaxSampleBuffers = 108, 97 + kCGLRPMaxSamples = 109, 96 98 kCGLRPVideoMemory = 120, 97 99 kCGLRPTextureMemory = 121, 98 100 kCGLRPRendererCount = 128,