Load() public static method

Loads the given Wgl entry point.
public static Load ( string function ) : bool
function string The name of the function to load.
return bool
Ejemplo n.º 1
0
 public override void LoadAll()
 {
     Wgl.LoadAll();
     vsync_supported = Wgl.Arb.SupportsExtension(this, "WGL_EXT_swap_control") &&
                       Wgl.Load("wglGetSwapIntervalEXT") && Wgl.Load("wglSwapIntervalEXT");
     base.LoadAll();
 }