Ejemplo 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);
        }
Ejemplo n.º 2
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool CopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target);
Ejemplo n.º 3
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool SwapBuffers(EGLDisplay dpy, EGLSurface surface);
Ejemplo n.º 4
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool MakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
Ejemplo n.º 5
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool ReleaseTexImage(EGLDisplay dpy, EGLSurface surface, int buffer);
Ejemplo n.º 6
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool SurfaceAttrib(EGLDisplay dpy, EGLSurface surface, int attribute, int value);
Ejemplo n.º 7
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool QuerySurface(EGLDisplay dpy, EGLSurface surface, int attribute, out int value);
Ejemplo n.º 8
0
Archivo: egl.cs Proyecto: koush/Xaml
 public static extern bool DestroySurface(EGLDisplay dpy, EGLSurface surface);
Ejemplo n.º 9
0
Archivo: egl.cs Proyecto: 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;
 }
Ejemplo n.º 10
0
 public static extern bool CopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target);
Ejemplo n.º 11
0
 public static extern bool SwapBuffers(EGLDisplay dpy, EGLSurface surface);
Ejemplo n.º 12
0
 public static extern bool MakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
Ejemplo n.º 13
0
 public static extern bool ReleaseTexImage(EGLDisplay dpy, EGLSurface surface, int buffer);
Ejemplo n.º 14
0
 public static extern bool SurfaceAttrib(EGLDisplay dpy, EGLSurface surface, int attribute, int value);
Ejemplo n.º 15
0
 public static extern bool QuerySurface(EGLDisplay dpy, EGLSurface surface, int attribute, out int value);
Ejemplo n.º 16
0
 public static extern bool DestroySurface(EGLDisplay dpy, EGLSurface surface);