Show
Ignore:
Timestamp:
07/15/07 23:12:21 (1 year ago)
Author:
JoeCoder
Message:

Updated to latest Derelict, DMD 1.018 now supported.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/derelict/opengl/extension/ati/map_object_buffer.d

    r32 r50  
    7575} 
    7676 
     77private const char[] Funcs = 
     78" 
     79    typedef GLvoid* function(GLuint) pfglMapObjectBufferATI; 
     80    typedef void function(GLuint) pfglUnmapObjectBufferATI; 
     81"; 
     82 
    7783version(Windows) 
    7884{ 
    79     extern(Windows): 
     85    extern(Windows): mixin(Funcs); 
    8086} 
    8187else 
    8288{ 
    83     extern(C): 
     89    extern(C): mixin(Funcs); 
    8490} 
    8591 
    86 typedef GLvoid* function(GLuint) pfglMapObjectBufferATI; 
    87 typedef void function(GLuint) pfglUnmapObjectBufferATI; 
    8892pfglMapObjectBufferATI     glMapObjectBufferATI; 
    8993pfglUnmapObjectBufferATI     glUnmapObjectBufferATI;