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/arb/point_parameters.d

    r32 r50  
    8282} 
    8383 
     84private const char[] Funcs = 
     85" 
     86    typedef void function(GLenum, GLfloat) pfglPointParameterfARB; 
     87    typedef void function(GLenum, GLfloat*) pfglPointParameterfvARB; 
     88"; 
     89 
    8490version(Windows) 
    8591{ 
    86     extern(Windows): 
     92    extern(Windows): mixin(Funcs); 
    8793} 
    8894else 
    8995{ 
    90     extern(C): 
     96    extern(C): mixin(Funcs); 
    9197} 
    9298 
    93 typedef void function(GLenum, GLfloat) pfglPointParameterfARB; 
    94 typedef void function(GLenum, GLfloat*) pfglPointParameterfvARB; 
    9599pfglPointParameterfARB          glPointParameterfARB; 
    96100pfglPointParameterfvARB         glPointParameterfvARB;