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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 2831733003: Fix blits from multisampled renderbuffers to alpha:false WebGL back buffer. (Closed)
Patch Set: Add PLATFORM_EXPORT to fix link failure on Windows. Created 3 years, 8 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/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index 834b474f6e235ccfe64b97a2daa622f758b91014..2573fd9bc362655522e72c056a42ae9b9d5cc4a1 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -2651,6 +2651,16 @@ void BindTexImage2DCHROMIUM(GLenum target, GLint imageId) {
}
}
+void BindTexImage2DWithInternalformatCHROMIUM(GLenum target,
+ GLenum internalformat,
+ GLint imageId) {
+ gles2::cmds::BindTexImage2DWithInternalformatCHROMIUM* c =
+ GetCmdSpace<gles2::cmds::BindTexImage2DWithInternalformatCHROMIUM>();
+ if (c) {
+ c->Init(target, internalformat, imageId);
+ }
+}
+
void ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) {
gles2::cmds::ReleaseTexImage2DCHROMIUM* c =
GetCmdSpace<gles2::cmds::ReleaseTexImage2DCHROMIUM>();
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698