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/matrix_palette.d

    r32 r50  
    9494} 
    9595 
     96private const char[] Funcs = 
     97" 
     98    typedef void function(GLint) pfglCurrentPaletteMatrixARB; 
     99    typedef void function(GLint, GLubyte*) pfglMatrixIndexubvARB; 
     100    typedef void function(GLint, GLushort*) pfglMatrixIndexusvARB; 
     101    typedef void function(GLint, GLuint*) pfglMatrixIndexuivARB; 
     102    typedef void function(GLint, GLenum, GLsizei, GLvoid*) pfglMatrixIndexPointerARB; 
     103"; 
     104 
    96105version(Windows) 
    97106{ 
    98     extern(Windows): 
     107    extern(Windows): mixin(Funcs); 
    99108} 
    100109else 
    101110{ 
    102     extern(C): 
     111    extern(C): mixin(Funcs); 
    103112} 
    104113 
    105 typedef void function(GLint) pfglCurrentPaletteMatrixARB; 
    106 typedef void function(GLint, GLubyte*) pfglMatrixIndexubvARB; 
    107 typedef void function(GLint, GLushort*) pfglMatrixIndexusvARB; 
    108 typedef void function(GLint, GLuint*) pfglMatrixIndexuivARB; 
    109 typedef void function(GLint, GLenum, GLsizei, GLvoid*) pfglMatrixIndexPointerARB; 
    110114pfglCurrentPaletteMatrixARB         glCurrentPaletteMatrixARB; 
    111115pfglMatrixIndexubvARB               glMatrixIndexubvARB;