Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 763 Bytes

File metadata and controls

27 lines (20 loc) · 763 Bytes

DerelictIL

A dynamic binding to version 1.8.0 of the DevIL library for the D Programming Language.

Please see the sections on Compiling and Linking and The Derelict Loader, in the Derelict documentation, for information on how to build DerelictIL and load DevIL at run time. In the meantime, here's some sample code.

import derelict.devil.il;
import derelict.devil.ilu;
import derelict.devil.ilut;

void main() {
    // Load the DevIL/ILU/ILUT libraries, .
    DerelictIL.load();
    DerelictILU.load();
    DerelictILUT.load();

    // Now DevIL functions can be called.
    ...
}