From 0580f88990d5b957c1e8c82f94af4fe63f72d58d Mon Sep 17 00:00:00 2001 From: "mythri.venugopal" Date: Wed, 8 Apr 2015 15:14:43 +0900 Subject: [PATCH] Evas GL: Add missed GLES 3.0 functions in evgl_load_gles3_api. Reviewers: wonsik, spacegrapher, jpeg Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2300 --- src/modules/evas/engines/gl_common/evas_gl_api.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/evas/engines/gl_common/evas_gl_api.c b/src/modules/evas/engines/gl_common/evas_gl_api.c index 8a04c214f6..b22189cc65 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_api.c +++ b/src/modules/evas/engines/gl_common/evas_gl_api.c @@ -5747,10 +5747,12 @@ _evgl_load_gles3_apis(void *dl_handle, Evas_GL_API *funcs) ORD(glUniformMatrix3x4fv); ORD(glUniformMatrix4x3fv); ORD(glUnmapBuffer); + ORD(glVertexAttribDivisor); ORD(glVertexAttribI4i); ORD(glVertexAttribI4iv); ORD(glVertexAttribI4ui); ORD(glVertexAttribI4uiv); + ORD(glVertexAttribIPointer); ORD(glWaitSync); #undef ORD return EINA_TRUE;