Esempio n. 1
0
        public static EGLSurface CreatePbufferSurface(EGLDisplay dpy, EGLConfig config, int[] attrib_list)
        {
            IntPtr     ptr = eglCreatePbufferSurface(dpy, config, attrib_list);
            EGLSurface ret = new EGLSurface();

            ret.Pointer = ptr;
            return(ret);
        }
Esempio n. 2
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool CopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target);
Esempio n. 3
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool SwapBuffers(EGLDisplay dpy, EGLSurface surface);
Esempio n. 4
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool MakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
Esempio n. 5
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool ReleaseTexImage(EGLDisplay dpy, EGLSurface surface, int buffer);
Esempio n. 6
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool SurfaceAttrib(EGLDisplay dpy, EGLSurface surface, int attribute, int value);
Esempio n. 7
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool QuerySurface(EGLDisplay dpy, EGLSurface surface, int attribute, out int value);
Esempio n. 8
0
File: egl.cs Progetto: koush/Xaml
 public static extern bool DestroySurface(EGLDisplay dpy, EGLSurface surface);
Esempio n. 9
0
File: egl.cs Progetto: koush/Xaml
 public static EGLSurface CreateWindowSurface(EGLDisplay dpy, EGLConfig config, IntPtr win, int[] attrib_list)
 {
     IntPtr ptr = eglCreateWindowSurface(dpy, config,  win, attrib_list);
     EGLSurface ret = new EGLSurface();
     ret.Pointer = ptr;
     return ret;
 }
Esempio n. 10
0
 public static extern bool CopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target);
Esempio n. 11
0
 public static extern bool SwapBuffers(EGLDisplay dpy, EGLSurface surface);
Esempio n. 12
0
 public static extern bool MakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
Esempio n. 13
0
 public static extern bool ReleaseTexImage(EGLDisplay dpy, EGLSurface surface, int buffer);
Esempio n. 14
0
 public static extern bool SurfaceAttrib(EGLDisplay dpy, EGLSurface surface, int attribute, int value);
Esempio n. 15
0
 public static extern bool QuerySurface(EGLDisplay dpy, EGLSurface surface, int attribute, out int value);
Esempio n. 16
0
 public static extern bool DestroySurface(EGLDisplay dpy, EGLSurface surface);