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