summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasiliy Ulyanov <v.ulyanov@samsung.com>2015-08-07 18:52:28 +0300
committerjinhyung.jo <jinhyung.jo@samsung.com>2015-08-10 15:32:39 +0900
commit64c347e6e7743998df1d496a0680b11ba9a67a95 (patch)
tree17677888e43f8040309d4d9265a756d2695053ac
parent9f121a4a1f2cb5611e88424e7b52287b72876d14 (diff)
downloademulator-yagl-64c347e6e7743998df1d496a0680b11ba9a67a95.tar.gz
emulator-yagl-64c347e6e7743998df1d496a0680b11ba9a67a95.tar.bz2
emulator-yagl-64c347e6e7743998df1d496a0680b11ba9a67a95.zip
This workaround appears no longer needed since the corresponding fix has been applied to libevas. Besides it seems to cause problems with cairo. This reverts commit 1a1d13934f4bad7b779cd6093c0f00cc9f36ec03. Change-Id: Iad9af1b3bcd6c2756963ebd0e10e97879245d496 Signed-off-by: Vasiliy Ulyanov <v.ulyanov@samsung.com>
-rw-r--r--GLESv2/yagl_gles2_context.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/GLESv2/yagl_gles2_context.c b/GLESv2/yagl_gles2_context.c
index 9c667bf..515d5f2 100644
--- a/GLESv2/yagl_gles2_context.c
+++ b/GLESv2/yagl_gles2_context.c
@@ -176,13 +176,7 @@ static const GLchar
switch (name) {
case GL_VERSION:
- if (yagl_get_host_gl_version() >= yagl_gl_3_1_es3) {
- /* Workaround for libevas gles version checking: report 3.0
- * version if the host supports it. */
- str = "OpenGL ES 3.0";
- } else {
- str = "OpenGL ES 2.0";
- }
+ str = "OpenGL ES 2.0";
break;
case GL_RENDERER:
str = "YaGL GLESv2";