aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/gl/GrGLInterface.h
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2014-10-24 15:00:50 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-24 15:00:50 -0700
commit27c1521ccf0f833affa1182d6d9bc5e31b3af351 (patch)
tree65c5fb4ee7919e33026824b7ea70b520ea2684fc /include/gpu/gl/GrGLInterface.h
parentf622a6c8fd176acf9944de8df00d7f0bb56b67d3 (diff)
Add gpu support for glVertexAttrb1f, 2fv, and 3fv
Diffstat (limited to 'include/gpu/gl/GrGLInterface.h')
-rw-r--r--include/gpu/gl/GrGLInterface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gpu/gl/GrGLInterface.h b/include/gpu/gl/GrGLInterface.h
index 32552e6402..5a4b1e77cf 100644
--- a/include/gpu/gl/GrGLInterface.h
+++ b/include/gpu/gl/GrGLInterface.h
@@ -311,6 +311,9 @@ public:
GLPtr<GrGLUnmapBufferSubDataProc> fUnmapBufferSubData;
GLPtr<GrGLUnmapTexSubImage2DProc> fUnmapTexSubImage2D;
GLPtr<GrGLUseProgramProc> fUseProgram;
+ GLPtr<GrGLVertexAttrib1fProc> fVertexAttrib1f;
+ GLPtr<GrGLVertexAttrib2fvProc> fVertexAttrib2fv;
+ GLPtr<GrGLVertexAttrib3fvProc> fVertexAttrib3fv;
GLPtr<GrGLVertexAttrib4fvProc> fVertexAttrib4fv;
GLPtr<GrGLVertexAttribPointerProc> fVertexAttribPointer;
GLPtr<GrGLViewportProc> fViewport;