aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLCreateNullInterface.cpp
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 /src/gpu/gl/GrGLCreateNullInterface.cpp
parentf622a6c8fd176acf9944de8df00d7f0bb56b67d3 (diff)
Add gpu support for glVertexAttrb1f, 2fv, and 3fv
Diffstat (limited to 'src/gpu/gl/GrGLCreateNullInterface.cpp')
-rw-r--r--src/gpu/gl/GrGLCreateNullInterface.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLCreateNullInterface.cpp b/src/gpu/gl/GrGLCreateNullInterface.cpp
index 9cac1c675a..6275ced6fc 100644
--- a/src/gpu/gl/GrGLCreateNullInterface.cpp
+++ b/src/gpu/gl/GrGLCreateNullInterface.cpp
@@ -454,6 +454,9 @@ const GrGLInterface* GrGLCreateNullInterface() {
functions->fUniformMatrix4fv = noOpGLUniformMatrix4fv;
functions->fUnmapBuffer = nullGLUnmapBuffer;
functions->fUseProgram = nullGLUseProgram;
+ functions->fVertexAttrib1f = noOpGLVertexAttrib1f;
+ functions->fVertexAttrib2fv = noOpGLVertexAttrib2fv;
+ functions->fVertexAttrib3fv = noOpGLVertexAttrib3fv;
functions->fVertexAttrib4fv = noOpGLVertexAttrib4fv;
functions->fVertexAttribPointer = noOpGLVertexAttribPointer;
functions->fViewport = nullGLViewport;