diff options
author | David Robillard <d@drobilla.net> | 2020-03-08 18:31:59 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-08 18:31:59 +0100 |
commit | 838deb81c24030d7d7891ad1f1317f63428bf29b (patch) | |
tree | 2f4dea027d3259ddb39dc46e9e0d0172b671abf3 /pugl | |
parent | 2c82dfe87ece6322235933537d2ed59812c312c3 (diff) | |
download | pugl-838deb81c24030d7d7891ad1f1317f63428bf29b.tar.gz pugl-838deb81c24030d7d7891ad1f1317f63428bf29b.tar.bz2 pugl-838deb81c24030d7d7891ad1f1317f63428bf29b.zip |
Make PUGL_DONT_CARE the default for PUGL_SWAP_INTERVAL
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/detail/implementation.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |