Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: gpu/command_buffer/common/gl_mock.h

Issue 8381001: Split GL binding init into core and extension part (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Use existing glext.h/wglext.h/glxext.h headers from Mesa. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/common/gl_mock.h
diff --git a/gpu/command_buffer/common/gl_mock.h b/gpu/command_buffer/common/gl_mock.h
index 7d89352dfd8dbe2b1382a417d77c2f5b9d0b8b1d..303fe9f087261dbd3198c683e599c74eec9eaed2 100644
--- a/gpu/command_buffer/common/gl_mock.h
+++ b/gpu/command_buffer/common/gl_mock.h
@@ -33,7 +33,7 @@ class MockGLInterface : public GLInterface {
MOCK_METHOD3(BindFragDataLocation, void(GLuint program, GLuint colorNumber,
const char* name));
- MOCK_METHOD4(BindFragDataLocationIndexedARB, void(GLuint program,
+ MOCK_METHOD4(BindFragDataLocationIndexed, void(GLuint program,
GLuint colorNumber, GLuint index, const char* name));
MOCK_METHOD2(BindFramebufferEXT, void(GLenum target, GLuint framebuffer));
@@ -476,4 +476,3 @@ class MockGLInterface : public GLInterface {
} // namespace gfx
#endif // GPU_COMMAND_BUFFER_COMMON_GL_MOCK_H_
-

Powered by Google App Engine
This is Rietveld 408576698