summaryrefslogtreecommitdiff
path: root/progs/egl/eglgears.c
diff options
context:
space:
mode:
authorJon Smirl <jonsmirl@gmail.com>2005-08-07 02:15:27 +0000
committerJon Smirl <jonsmirl@gmail.com>2005-08-07 02:15:27 +0000
commit9a4dbf1cffc923cd3c6b0e70a6ddf1d9fe085ad2 (patch)
treea45769aa510dbc9bda66d7f27f0fff522cbe9a74 /progs/egl/eglgears.c
parent7e5da5d52629bfa68f83429254eab0304cf346bd (diff)
Fix up some of the sample to work with the r200 EGL driver
Diffstat (limited to 'progs/egl/eglgears.c')
-rw-r--r--progs/egl/eglgears.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/progs/egl/eglgears.c b/progs/egl/eglgears.c
index bd7835393e..0c3da565f5 100644
--- a/progs/egl/eglgears.c
+++ b/progs/egl/eglgears.c
@@ -87,9 +87,9 @@ static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
static GLint gear1, gear2, gear3;
static GLfloat angle = 0.0;
-static GLfloat eyesep = 5.0; /* Eye separation. */
-static GLfloat fix_point = 40.0; /* Fixation point distance. */
-static GLfloat left, right, asp; /* Stereo frustum params. */
+//static GLfloat eyesep = 5.0; /* Eye separation. */
+//static GLfloat fix_point = 40.0; /* Fixation point distance. */
+//static GLfloat left, right, asp; /* Stereo frustum params. */
/*
@@ -385,7 +385,7 @@ main(int argc, char *argv[])
}
// DBR : Create EGL context/surface etc
- EGLDisplay d = eglGetDisplay("!fb_dri");
+ EGLDisplay d = eglGetDisplay(":0");
assert(d);
if (!eglInitialize(d, &maj, &min)) {
@@ -431,7 +431,9 @@ main(int argc, char *argv[])
init(); // Initialise the GL visual
reshape(1024,768);
-
+
+ glDrawBuffer( GL_BACK );
+
// DBR : Run the simulation
run_gears(d, screen_surf, 5.0);