Commit 58646526 by Geoff Lang

Pipe the ProgramBinary functions to the OES implementations.

BUG:462020 Change-Id: Ic567bf3d56d551716f1915a208003a7699abe6e6 Reviewed-on: https://chromium-review.googlesource.com/254300Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 6036a1fe
...@@ -3138,8 +3138,8 @@ void GL_APIENTRY GetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* leng ...@@ -3138,8 +3138,8 @@ void GL_APIENTRY GetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* leng
return; return;
} }
// glGetProgramBinary // TODO: Pipe through to the OES extension for now, needs proper validation
UNIMPLEMENTED(); return GetProgramBinaryOES(program, bufSize, length, binaryFormat, binary);
} }
} }
...@@ -3157,8 +3157,8 @@ void GL_APIENTRY ProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid ...@@ -3157,8 +3157,8 @@ void GL_APIENTRY ProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid
return; return;
} }
// glProgramBinary // TODO: Pipe through to the OES extension for now, needs proper validation
UNIMPLEMENTED(); return ProgramBinaryOES(program, binaryFormat, binary, length);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment