summaryrefslogtreecommitdiff
path: root/progs/tests/antialias.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/antialias.c')
-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);
}