- Timestamp:
- 07/15/07 23:12:21 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/derelict/opengl/extension/ati/map_object_buffer.d
r32 r50 75 75 } 76 76 77 private const char[] Funcs = 78 " 79 typedef GLvoid* function(GLuint) pfglMapObjectBufferATI; 80 typedef void function(GLuint) pfglUnmapObjectBufferATI; 81 "; 82 77 83 version(Windows) 78 84 { 79 extern(Windows): 85 extern(Windows): mixin(Funcs); 80 86 } 81 87 else 82 88 { 83 extern(C): 89 extern(C): mixin(Funcs); 84 90 } 85 91 86 typedef GLvoid* function(GLuint) pfglMapObjectBufferATI;87 typedef void function(GLuint) pfglUnmapObjectBufferATI;88 92 pfglMapObjectBufferATI glMapObjectBufferATI; 89 93 pfglUnmapObjectBufferATI glUnmapObjectBufferATI;
