Changeset 50 for trunk/src/derelict/opengl/extension/arb/multisample.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/multisample.d
r32 r50 85 85 } 86 86 87 private const char[] Funcs = 88 " 89 typedef void function(GLclampf, GLboolean) pfglSampleCoverageARB; 90 "; 91 87 92 version(Windows) 88 93 { 89 extern(Windows): 94 extern(Windows): mixin(Funcs); 90 95 } 91 96 else 92 97 { 93 extern(C): 98 extern(C): mixin(Funcs); 94 99 } 95 100 96 typedef void function(GLclampf, GLboolean) pfglSampleCoverageARB; 101 97 102 pfglSampleCoverageARB glSampleCoverageARB;
