From 163235e504ffd0fecb4a8c6ebfa84ef8759d6b45 Mon Sep 17 00:00:00 2001 From: Liran Date: Thu, 2 Jun 2011 14:40:58 +0300 Subject: [PATCH] opengl translator: fix eglGetConfigAttrib fix renderable type parameter for eglconfig Change-Id: Iac1d782cc37b0c7055bb90109a17583b84e6e6e3 --- tools/emulator/opengl/host/libs/Translator/EGL/EglConfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/emulator/opengl/host/libs/Translator/EGL/EglConfig.cpp b/tools/emulator/opengl/host/libs/Translator/EGL/EglConfig.cpp index d9357c2d1..fc8f58547 100644 --- a/tools/emulator/opengl/host/libs/Translator/EGL/EglConfig.cpp +++ b/tools/emulator/opengl/host/libs/Translator/EGL/EglConfig.cpp @@ -167,6 +167,7 @@ bool EglConfig::getConfAttrib(EGLint attrib,EGLint* val) const { break; case EGL_RENDERABLE_TYPE: *val = m_renderable_type; + break; case EGL_SAMPLE_BUFFERS: *val = m_sample_buffers_num; break;