Changeset 50 for trunk/src/derelict/opengl/extension/arb/draw_buffers.d
- Timestamp:
- 07/15/07 23:12:21 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/derelict/opengl/extension/arb/draw_buffers.d
r32 r50 92 92 GL_DRAW_BUFFER15_ARB = 0x8834, 93 93 } 94 95 private const char[] Funcs = 96 " 97 typedef void function(GLsizei, GLenum*) pfglDrawBuffersARB; 98 "; 99 94 100 version(Windows) 95 101 { 96 extern(Windows): 102 extern(Windows): mixin(Funcs); 97 103 } 98 104 else 99 105 { 100 extern(C): 106 extern(C): mixin(Funcs); 101 107 } 102 108 103 typedef void function(GLsizei, GLenum*) pfglDrawBuffersARB;104 109 pfglDrawBuffersARB glDrawBuffersARB;
