diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-05 12:41:00 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-12 12:02:48 +0200 |
commit | bc8c946f7274543ca3ed35482de4e554daccfac6 (patch) | |
tree | 45c8eeb151649bf15d5b4f1f98273cc37f35a832 /ui/egl-context.c | |
parent | 151c8e608efc29e4dde4a0dbc2e79ebbc86c319c (diff) |
egl: explicitly ask for core context
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170505104101.30589-6-kraxel@redhat.com
Diffstat (limited to 'ui/egl-context.c')
-rw-r--r-- | ui/egl-context.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/egl-context.c b/ui/egl-context.c index 3a02b68d1a..2161969abe 100644 --- a/ui/egl-context.c +++ b/ui/egl-context.c @@ -7,9 +7,10 @@ QEMUGLContext qemu_egl_create_context(DisplayChangeListener *dcl, { EGLContext ctx; EGLint ctx_att[] = { - EGL_CONTEXT_CLIENT_VERSION, params->major_ver, - EGL_CONTEXT_MINOR_VERSION_KHR, params->minor_ver, - EGL_NONE + EGL_CONTEXT_OPENGL_PROFILE_MASK, EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT, + EGL_CONTEXT_CLIENT_VERSION, params->major_ver, + EGL_CONTEXT_MINOR_VERSION_KHR, params->minor_ver, + EGL_NONE }; ctx = eglCreateContext(qemu_egl_display, qemu_egl_config, |