projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c310570
)
print GL_MULTISAMPLE_ARB
author
Brian Paul
<brian.paul@tungstengraphics.com>
Sat, 29 Mar 2003 16:42:57 +0000
(16:42 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Sat, 29 Mar 2003 16:42:57 +0000
(16:42 +0000)
progs/tests/antialias.c
patch
|
blob
|
history
diff --git
a/progs/tests/antialias.c
b/progs/tests/antialias.c
index 3f03332da5ceb14a0eb16d6752dad2a46f0541e9..79b5ab75c5751e09c77675ea3b19da3d2293eece 100644
(file)
--- 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);
}