diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-11-14 21:44:48 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-11-14 21:44:48 -0500 |
commit | ecc24e128bde3bb98dc51a38d459857346ae7eb9 (patch) | |
tree | 9620f66020561dea50c7aaf64d06f606cf15167f | |
parent | b087e44c8e5ebed07a25cef43552ff3662e0c3c6 (diff) |
window: Remove problematic GL attribute.
I found that the 'framebuffer-srgb-capable' setting does not work with
Mesa 17.2.1. Best to just get rid of it.
* chickadee/window.scm (open-window): Remove setting for
'framebuffer-srgb-capable'.
-rw-r--r-- | chickadee/window.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/chickadee/window.scm b/chickadee/window.scm index 0ca94e4..8d51fa1 100644 --- a/chickadee/window.scm +++ b/chickadee/window.scm @@ -52,7 +52,6 @@ (sdl2:set-gl-attribute! 'alpha-size 8) (sdl2:set-gl-attribute! 'stencil-size 8) (sdl2:set-gl-attribute! 'retained-backing 0) - (sdl2:set-gl-attribute! 'framebuffer-srgb-capable 1) (let* ((sdl-window (sdl2:make-window #:opengl? #t #:title title #:size (list width height) |