summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-03-29 16:42:57 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-03-29 16:42:57 +0000
commitc13a05547de406985b3bf3f5e4473eff050b5ac7 (patch)
tree6e0a3d59a9622dbfaf367240a5d3e2031ebda8f6
parentc31057021593e236240b388490cf791135111f10 (diff)
print GL_MULTISAMPLE_ARB
-rw-r--r--progs/tests/antialias.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/tests/antialias.c b/progs/tests/antialias.c
index 3f03332da5..79b5ab75c5 100644
--- a/progs/tests/antialias.c
+++ b/progs/tests/antialias.c
@@ -1,4 +1,4 @@
-/* $Id: antialias.c,v 1.1 2002/11/08 18:30:26 brianp Exp $ */
+/* $Id: antialias.c,v 1.2 2003/03/29 16:42:57 brianp Exp $ */
/*
* Test multisampling and polygon smoothing.
@@ -203,6 +203,9 @@ Init( void )
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glBlendFunc(GL_SRC_ALPHA_SATURATE, GL_ONE);
+
+ glGetIntegerv(GL_MULTISAMPLE_ARB, &s);
+ printf("GL_MULTISAMPLE_ARB = %d\n", s);
}