From 49b95b9c6ce2539aeeb2d4393a8b3c43c0372035 Mon Sep 17 00:00:00 2001 From: "mythri.venugopal" Date: Tue, 24 Mar 2015 11:22:01 -0700 Subject: [PATCH] Evas GL: Add missed GLES 3.0 functions. Summary: Initialise glVertexAttribDivisor & glVertexAttribIPointer EvasGL function pointers. Reviewers: wonsik, spacegrapher, jpeg Reviewed By: jpeg Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2236 --- src/modules/evas/engines/gl_common/evas_gl_api.c | 4 ++++ 1 file changed, 4 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 fa28846..8a04c21 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_api.c +++ b/src/modules/evas/engines/gl_common/evas_gl_api.c @@ -5331,10 +5331,12 @@ _normal_gles3_api_get(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 @@ -5618,10 +5620,12 @@ _debug_gles3_api_get(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 -- 2.7.4