OpenTK.Platform.X11.Glx.GetAddress C# (CSharp) Method

GetAddress() protected method

protected GetAddress ( string funcname ) : IntPtr
funcname string
return System.IntPtr
        protected override IntPtr GetAddress(string funcname)
        {
            return Glx.GetProcAddress(funcname);
        }

Usage Example

Example #1
0
 public override IntPtr GetAddress(string function)
 {
     return(Glx.GetAddress(function));
 }