aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xgl/egl/xeglinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'xorg-server/hw/xgl/egl/xeglinit.c')
-rw-r--r--xorg-server/hw/xgl/egl/xeglinit.c131
1 files changed, 131 insertions, 0 deletions
diff --git a/xorg-server/hw/xgl/egl/xeglinit.c b/xorg-server/hw/xgl/egl/xeglinit.c
new file mode 100644
index 000000000..c28d946ac
--- /dev/null
+++ b/xorg-server/hw/xgl/egl/xeglinit.c
@@ -0,0 +1,131 @@
+/*
+ * Copyright © 2004 David Reveman
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of
+ * David Reveman not be used in advertising or publicity pertaining to
+ * distribution of the software without specific, written prior permission.
+ * David Reveman makes no representations about the suitability of this
+ * software for any purpose. It is provided "as is" without express or
+ * implied warranty.
+ *
+ * DAVID REVEMAN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+ * NO EVENT SHALL DAVID REVEMAN BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+ * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
+ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: David Reveman <davidr@novell.com>
+ */
+
+#include "xegl.h"
+
+static xglScreenInfoRec xglScreenInfo = {
+ NULL, 0, 0, 0, 0,
+ DEFAULT_GEOMETRY_DATA_TYPE,
+ DEFAULT_GEOMETRY_USAGE,
+ FALSE,
+ XGL_DEFAULT_PBO_MASK,
+ FALSE,
+ FALSE
+};
+
+#ifdef GLXEXT
+static Bool loadGlx = TRUE;
+#endif
+
+void
+InitOutput (ScreenInfo *pScreenInfo,
+ int argc,
+ char **argv)
+{
+
+#ifdef GLXEXT
+ if (loadGlx)
+ {
+ if (!xglLoadGLXModules ())
+ FatalError ("No GLX modules loaded");
+ }
+#endif
+
+ xeglInitOutput (pScreenInfo, argc, argv);
+}
+
+Bool
+LegalModifier (unsigned int key,
+ DeviceIntPtr pDev)
+{
+ return xeglLegalModifier (key, pDev);
+}
+
+void
+ProcessInputEvents (void)
+{
+ xeglProcessInputEvents ();
+}
+
+void
+InitInput (int argc,
+ char **argv)
+{
+ xeglInitInput (argc, argv);
+}
+
+void
+ddxUseMsg (void)
+{
+ ErrorF ("\nXgl usage:\n");
+
+#ifdef GLXEXT
+ ErrorF ("-noglx don't load glx extension\n");
+#endif
+
+ xglUseMsg ();
+ ErrorF ("\nXegl usage:\n");
+ xeglUseMsg ();
+}
+
+int
+ddxProcessArgument (int argc,
+ char **argv,
+ int i)
+{
+ int skip;
+
+#ifdef GLXEXT
+ if (!strcmp (argv[i], "-noglx"))
+ {
+ loadGlx = FALSE;
+ return 1;
+ }
+#endif
+
+ skip = xglProcessArgument (argc, argv, i);
+ if (skip)
+ return skip;
+
+ return xeglProcessArgument (argc, argv, i);
+}
+
+void
+AbortDDX (void)
+{
+ xeglAbort ();
+}
+
+void
+ddxGiveUp (void)
+{
+ xeglGiveUp ();
+}
+
+void
+OsVendorInit (void)
+{
+ xeglOsVendorInit ();
+}