From 838deb81c24030d7d7891ad1f1317f63428bf29b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Mar 2020 18:31:59 +0100 Subject: Make PUGL_DONT_CARE the default for PUGL_SWAP_INTERVAL --- pugl/detail/implementation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pugl/detail/implementation.c b/pugl/detail/implementation.c index d3b47df..0eb02aa 100644 --- a/pugl/detail/implementation.c +++ b/pugl/detail/implementation.c @@ -83,7 +83,7 @@ puglSetDefaultHints(PuglHints hints) hints[PUGL_STENCIL_BITS] = 8; hints[PUGL_SAMPLES] = 0; hints[PUGL_DOUBLE_BUFFER] = PUGL_FALSE; - hints[PUGL_SWAP_INTERVAL] = 0; + hints[PUGL_SWAP_INTERVAL] = PUGL_DONT_CARE; hints[PUGL_RESIZABLE] = PUGL_FALSE; hints[PUGL_IGNORE_KEY_REPEAT] = PUGL_FALSE; } -- cgit v1.2.1