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

    r32 r50  
    8585} 
    8686 
     87private const char[] Funcs = 
     88" 
     89    typedef void function(GLclampf, GLboolean) pfglSampleCoverageARB; 
     90"; 
     91 
    8792version(Windows) 
    8893{ 
    89     extern(Windows): 
     94    extern(Windows): mixin(Funcs); 
    9095} 
    9196else 
    9297{ 
    93     extern(C): 
     98    extern(C): mixin(Funcs); 
    9499} 
    95100 
    96 typedef void function(GLclampf, GLboolean) pfglSampleCoverageARB; 
     101 
    97102pfglSampleCoverageARB       glSampleCoverageARB;