예제 #1
0
 //
 internal int GetAttribute(EglConfigAttribute attribute)
 {
     unsafe
     {
         Egl.GetConfigAttrib(Display, this, attribute, out int attribValue);
         return(attribValue);
     }
 }
예제 #2
0
 internal static bool GetConfigAttrib(EglDisplay display, EglConfig config, EglConfigAttribute attribute, out int value)
 {
     return(eglGetConfigAttrib(display.Address, config.Address, attribute, out value));
 }
예제 #3
0
 private static extern bool eglGetConfigAttrib(IntPtr display, IntPtr config, EglConfigAttribute attribute, out int value);