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/ext/light_texture.d

    r32 r50  
    9090} 
    9191 
     92private 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 
    9299version(Windows) 
    93100{ 
    94     extern(Windows): 
     101    extern(Windows): mixin(Funcs); 
    95102} 
    96103else 
    97104{ 
    98     extern(C): 
     105    extern(C): mixin(Funcs); 
    99106} 
    100107 
    101 typedef void function(GLenum) pfglApplyTextureEXT; 
    102 typedef void function(GLenum) pfglTextureLightEXT; 
    103 typedef void function(GLenum, GLenum) pfglTextureMaterialEXT; 
    104108pfglApplyTextureEXT     glApplyTextureEXT; 
    105109pfglTextureLightEXT     glTextureLightEXT;