summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsap7@yahoo.gr>2007-04-13 18:12:37 +0300
committerGeorge Sapountzis <gsap7@yahoo.gr>2007-04-13 18:12:37 +0300
commit50aaabc248c9823106ff772873cbf2631d4dadcd (patch)
tree4b9f2b6aab47961b7e75be7484f27a719db42a71 /include
parent30b6f11de1f2f3b9198388451b8a1f73f012c964 (diff)
xmesa: export xmesa functions used by xfree86.
This uses xmesa.h as the GLcore interface and avoids adding an explicit GLcore inteface which would not be a proper interface anyway. It puts the declarations of the three functions specific for XMesa/XFree86 in xmesa.h, we can push them down to xmesa_xf86.h if hiding behind XFree86Server ifdef's is not enough.
Diffstat (limited to 'include')
-rw-r--r--include/GL/xmesa.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/GL/xmesa.h b/include/GL/xmesa.h
index ab813b23baa..f185a15cdb8 100644
--- a/include/GL/xmesa.h
+++ b/include/GL/xmesa.h
@@ -180,6 +180,21 @@ extern XMesaContext XMesaCreateContext( XMesaVisual v,
extern void XMesaDestroyContext( XMesaContext c );
+#ifdef XFree86Server
+/*
+ * These are the extra routines required for integration with XFree86.
+ * None of these routines should be user visible. -KEM
+ */
+extern GLboolean XMesaForceCurrent( XMesaContext c );
+
+extern GLboolean XMesaLoseCurrent( XMesaContext c );
+
+extern GLboolean XMesaCopyContext( XMesaContext src,
+ XMesaContext dst,
+ GLuint mask );
+#endif /* XFree86Server */
+
+
/*
* Create an XMesaBuffer from an X window.
*/