summaryrefslogtreecommitdiff
path: root/progs/trivial
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-05-24 10:38:57 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2007-05-24 10:38:57 +0100
commit572dc0864e044776618b0b9e8b808b9584cd1ef6 (patch)
tree2e8898981384f61c6c88b2725090273b6c5e4c21 /progs/trivial
parentc128c3ce8c05549b92607a890c3d10171910f4ba (diff)
Modifications to run with softpipe test harness
RGB->RGBA double buffer by default.
Diffstat (limited to 'progs/trivial')
-rw-r--r--progs/trivial/tri.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/progs/trivial/tri.c b/progs/trivial/tri.c
index 58a650b559..51395f0a41 100644
--- a/progs/trivial/tri.c
+++ b/progs/trivial/tri.c
@@ -32,7 +32,7 @@
#define CI_OFFSET_2 32
-GLenum doubleBuffer;
+GLenum doubleBuffer = 1;
static void Init(void)
{
@@ -40,7 +40,7 @@ static void Init(void)
fprintf(stderr, "GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
fprintf(stderr, "GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
- glClearColor(0.0, 0.0, 1.0, 0.0);
+ glClearColor(0.3, 0.1, 0.3, 0.0);
}
static void Reshape(int width, int height)
@@ -91,8 +91,6 @@ static GLenum Args(int argc, char **argv)
{
GLint i;
- doubleBuffer = GL_FALSE;
-
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-sb") == 0) {
doubleBuffer = GL_FALSE;
@@ -118,7 +116,7 @@ int main(int argc, char **argv)
glutInitWindowPosition(0, 0); glutInitWindowSize( 250, 250);
- type = GLUT_RGB;
+ type = GLUT_RGB | GLUT_ALPHA;
type |= (doubleBuffer) ? GLUT_DOUBLE : GLUT_SINGLE;
glutInitDisplayMode(type);