aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h
diff options
context:
space:
mode:
authorftrapero <frantracer@gmail.com>2017-06-15 14:15:08 +0200
committerftrapero <frantracer@gmail.com>2017-06-15 14:15:08 +0200
commit459021c165c7023ee75f524060ca270985b547c1 (patch)
treeed3dfb281a1c00a9cf59ebf9d165e5a7a0f346bf /nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h
parent4f216e7cf7571885f2995433580c9a3ec068eef4 (diff)
parent8667d4d97a3e958a7f63c18c34a62469ba5d2079 (diff)
downloadnx-libs-459021c165c7023ee75f524060ca270985b547c1.tar.gz
nx-libs-459021c165c7023ee75f524060ca270985b547c1.tar.bz2
nx-libs-459021c165c7023ee75f524060ca270985b547c1.zip
Include mesa-6.4.1 project
Diffstat (limited to 'nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h')
-rw-r--r--nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h b/nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h
new file mode 100644
index 000000000..d74d6e325
--- /dev/null
+++ b/nx-X11/extras/Mesa_6.4.1/src/egl/main/eglcontext.h
@@ -0,0 +1,67 @@
+
+#ifndef EGLCONTEXT_INCLUDED
+#define EGLCONTEXT_INCLUDED
+
+
+#include "egltypedefs.h"
+
+
+/**
+ * "Base" class for device driver contexts.
+ */
+struct _egl_context
+{
+ EGLContext Handle; /* The public/opaque handle which names this object */
+
+ _EGLDisplay *Display; /* who do I belong to? */
+
+ _EGLConfig *Config;
+
+ _EGLSurface *DrawSurface;
+ _EGLSurface *ReadSurface;
+
+ EGLBoolean IsBound;
+ EGLBoolean DeletePending;
+};
+
+
+extern void
+_eglInitContext(_EGLContext *ctx);
+
+
+extern void
+_eglSaveContext(_EGLContext *ctx);
+
+
+extern void
+_eglRemoveContext(_EGLContext *ctx);
+
+
+extern _EGLContext *
+_eglLookupContext(EGLContext ctx);
+
+
+extern _EGLContext *
+_eglGetCurrentContext(void);
+
+
+extern EGLContext
+_eglCreateContext(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list);
+
+
+extern EGLBoolean
+_eglDestroyContext(_EGLDriver *drv, EGLDisplay dpy, EGLContext ctx);
+
+
+extern EGLBoolean
+_eglQueryContext(_EGLDriver *drv, EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);
+
+
+extern EGLBoolean
+_eglMakeCurrent(_EGLDriver *drv, EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
+
+
+extern EGLBoolean
+_eglCopyContextMESA(_EGLDriver *drv, EGLDisplay dpy, EGLContext source, EGLContext dest, EGLint mask);
+
+#endif /* EGLCONTEXT_INCLUDED */