/DerelictVG

DerelictVG is a dynamic binding to the OpenVG library.

Primary LanguageD

DerelictVG

A dynamic binding to OpenVG for the D Programming Language.

This does not include bindings to EGL though! For now its only usable with AmanithVG.

Please see the pages Building and Linking Derelict and Using Derelict, or information on how to build DerelictVG and load the OpenVG library at run time. In the meantime, here's some sample code.

import derelict.openvg;

void main() {

    DerelictVG.load("libOpenVG.dll");
    // Now OpenVG functions can be called.
    ...
}