summaryrefslogtreecommitdiff
path: root/GLESv2
diff options
context:
space:
mode:
authorStanislav Vorobiov <s.vorobiov@samsung.com>2013-11-07 12:07:10 +0400
committerStanislav Vorobiov <s.vorobiov@samsung.com>2013-11-07 12:07:10 +0400
commit8a80aa1672877014d70e7f87ef80b3b9246277e0 (patch)
tree2d54a059d32b1bf8ff428e6d4b9d9fb248004115 /GLESv2
parent323b91856a487787689a569a90d3aee446309be6 (diff)
downloademulator-yagl-8a80aa1672877014d70e7f87ef80b3b9246277e0.tar.gz
emulator-yagl-8a80aa1672877014d70e7f87ef80b3b9246277e0.tar.bz2
emulator-yagl-8a80aa1672877014d70e7f87ef80b3b9246277e0.zip
YaGL: GL_OES_mapbuffer and GL_EXT_map_buffer_range implemented
Change-Id: I1c70ecaec48fe18b355a9d66690e638e929d555e
Diffstat (limited to 'GLESv2')
-rw-r--r--GLESv2/yagl_gles2_context.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/GLESv2/yagl_gles2_context.c b/GLESv2/yagl_gles2_context.c
index adb3585..93f68bf 100644
--- a/GLESv2/yagl_gles2_context.c
+++ b/GLESv2/yagl_gles2_context.c
@@ -113,7 +113,8 @@ static GLchar *yagl_gles2_context_get_extensions(struct yagl_gles_context *ctx)
const GLchar *mandatory_extensions =
"GL_OES_EGL_image GL_OES_depth24 GL_OES_depth32 "
"GL_OES_texture_float GL_OES_texture_float_linear "
- "GL_EXT_texture_format_BGRA8888 GL_OES_depth_texture GL_ANGLE_framebuffer_blit GL_EXT_draw_buffers ";
+ "GL_EXT_texture_format_BGRA8888 GL_OES_depth_texture GL_ANGLE_framebuffer_blit GL_EXT_draw_buffers "
+ "GL_OES_mapbuffer GL_EXT_map_buffer_range ";
const GLchar *packed_depth_stencil = "GL_OES_packed_depth_stencil ";
const GLchar *texture_npot = "GL_OES_texture_npot ";
const GLchar *texture_rectangle = "GL_ARB_texture_rectangle ";