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

Unified Diff: ui/gl/gl_bindings_autogen_mock.cc

Issue 1218223005: command_buffer: Implement CHROMIUM_framebuffer_mixed_samples extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase for commit Created 5 years 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
« no previous file with comments | « ui/gl/gl_bindings_autogen_mock.h ('k') | ui/gl/gl_enums_implementation_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_bindings_autogen_mock.cc
diff --git a/ui/gl/gl_bindings_autogen_mock.cc b/ui/gl/gl_bindings_autogen_mock.cc
index b0a9e2171db8a105c80a27d8588d909d52f69d55..2bb8516fc30b305ac55ade13da1b9b274627fd9f 100644
--- a/ui/gl/gl_bindings_autogen_mock.cc
+++ b/ui/gl/gl_bindings_autogen_mock.cc
@@ -563,6 +563,12 @@ MockGLInterface::Mock_glCoverStrokePathNV(GLuint name, GLenum coverMode) {
interface_->CoverStrokePathNV(name, coverMode);
}
+void GL_BINDING_CALL
+MockGLInterface::Mock_glCoverageModulationNV(GLenum components) {
+ MakeFunctionUnique("glCoverageModulationNV");
+ interface_->CoverageModulationNV(components);
+}
+
GLuint GL_BINDING_CALL MockGLInterface::Mock_glCreateProgram(void) {
MakeFunctionUnique("glCreateProgram");
return interface_->CreateProgram();
@@ -3029,6 +3035,8 @@ void* GL_BINDING_CALL MockGLInterface::GetGLProcAddress(const char* name) {
return reinterpret_cast<void*>(Mock_glCoverStrokePathInstancedNV);
if (strcmp(name, "glCoverStrokePathNV") == 0)
return reinterpret_cast<void*>(Mock_glCoverStrokePathNV);
+ if (strcmp(name, "glCoverageModulationNV") == 0)
+ return reinterpret_cast<void*>(Mock_glCoverageModulationNV);
if (strcmp(name, "glCreateProgram") == 0)
return reinterpret_cast<void*>(Mock_glCreateProgram);
if (strcmp(name, "glCreateShader") == 0)
« no previous file with comments | « ui/gl/gl_bindings_autogen_mock.h ('k') | ui/gl/gl_enums_implementation_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698