diff options
author | Brian Paul <[email protected]> | 2003-03-29 16:42:57 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-29 16:42:57 +0000 |
commit | c13a05547de406985b3bf3f5e4473eff050b5ac7 (patch) | |
tree | 6e0a3d59a9622dbfaf367240a5d3e2031ebda8f6 /progs/tests | |
parent | c31057021593e236240b388490cf791135111f10 (diff) |
print GL_MULTISAMPLE_ARB
Diffstat (limited to 'progs/tests')
-rw-r--r-- | progs/tests/antialias.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/tests/antialias.c b/progs/tests/antialias.c index 3f03332da5c..79b5ab75c57 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); } |