summaryrefslogtreecommitdiff
path: root/GLESv1_CM
diff options
context:
space:
mode:
authorStanislav Vorobiov <s.vorobiov@samsung.com>2014-01-22 14:48:54 +0400
committerStanislav Vorobiov <s.vorobiov@samsung.com>2014-01-22 14:48:54 +0400
commit21e5e6ff509b487fa5d9e1c4a43deb01b352ade9 (patch)
treecacb6a3ed02996248fc6ca776922e5103f9c0be1 /GLESv1_CM
parent004d2141a5bb4949dc19a23702fee39d0bc7f84e (diff)
downloademulator-yagl-21e5e6ff509b487fa5d9e1c4a43deb01b352ade9.tar.gz
emulator-yagl-21e5e6ff509b487fa5d9e1c4a43deb01b352ade9.tar.bz2
emulator-yagl-21e5e6ff509b487fa5d9e1c4a43deb01b352ade9.zip
YaGL: GL_NV_read_buffer implemented
Change-Id: Id6fbcd6a8c175a99c2263064bd8a4bf4683ad573
Diffstat (limited to 'GLESv1_CM')
-rw-r--r--GLESv1_CM/yagl_gles1_context.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/GLESv1_CM/yagl_gles1_context.c b/GLESv1_CM/yagl_gles1_context.c
index aa7b3cf..979fa46 100644
--- a/GLESv1_CM/yagl_gles1_context.c
+++ b/GLESv1_CM/yagl_gles1_context.c
@@ -47,6 +47,7 @@ static const GLchar *mapbuffer_ext = "GL_OES_mapbuffer";
static const GLchar *map_buffer_range_ext = "GL_EXT_map_buffer_range";
static const GLchar *texture_storage_ext = "GL_EXT_texture_storage";
static const GLchar *pbo_ext = "GL_NV_pixel_buffer_object";
+static const GLchar *read_buffer_ext = "GL_NV_read_buffer";
static const GLchar *packed_depth_stencil_ext = "GL_OES_packed_depth_stencil";
static const GLchar *texture_npot_ext = "GL_OES_texture_npot";
static const GLchar *texture_filter_anisotropic_ext = "GL_EXT_texture_filter_anisotropic";
@@ -87,6 +88,7 @@ static const GLchar **yagl_gles1_context_get_extensions(struct yagl_gles1_contex
extensions[i++] = map_buffer_range_ext;
extensions[i++] = texture_storage_ext;
extensions[i++] = pbo_ext;
+ extensions[i++] = read_buffer_ext;
if (ctx->base.texture_npot) {
extensions[i++] = texture_npot_ext;