diff options
Diffstat (limited to 'test/test_gl_hints.c')
-rw-r--r-- | test/test_gl_hints.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_gl_hints.c b/test/test_gl_hints.c index 7e91035..64c7342 100644 --- a/test/test_gl_hints.c +++ b/test/test_gl_hints.c @@ -55,6 +55,7 @@ main(void) assert(!puglSetViewHint(view, PUGL_ALPHA_BITS, PUGL_DONT_CARE)); assert(!puglSetViewHint(view, PUGL_DEPTH_BITS, PUGL_DONT_CARE)); assert(!puglSetViewHint(view, PUGL_STENCIL_BITS, PUGL_DONT_CARE)); + assert(!puglSetViewHint(view, PUGL_SAMPLE_BUFFERS, PUGL_DONT_CARE)); assert(!puglSetViewHint(view, PUGL_SAMPLES, PUGL_DONT_CARE)); assert(!puglSetViewHint(view, PUGL_DOUBLE_BUFFER, PUGL_DONT_CARE)); assert(!puglSetViewHint(view, PUGL_REFRESH_RATE, PUGL_DONT_CARE)); @@ -74,6 +75,7 @@ main(void) assert(puglGetViewHint(view, PUGL_ALPHA_BITS) != PUGL_DONT_CARE); assert(puglGetViewHint(view, PUGL_DEPTH_BITS) != PUGL_DONT_CARE); assert(puglGetViewHint(view, PUGL_STENCIL_BITS) != PUGL_DONT_CARE); + assert(puglGetViewHint(view, PUGL_SAMPLE_BUFFERS) != PUGL_DONT_CARE); assert(puglGetViewHint(view, PUGL_SAMPLES) != PUGL_DONT_CARE); assert(puglGetViewHint(view, PUGL_DOUBLE_BUFFER) != PUGL_DONT_CARE); assert(puglGetViewHint(view, PUGL_SWAP_INTERVAL) != PUGL_DONT_CARE); |