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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_autogen.h

Issue 2841573002: Revert of Fix blits from multisampled renderbuffers to alpha:false WebGL back buffer. (Closed)
Patch Set: 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/service/gles2_cmd_decoder_autogen.h
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
index 25237e25b8c3f5626b91247b3f9bf409acc52d19..fa2f5799cae41c7d5f95b989c84053ae85acbb1c 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
@@ -4778,24 +4778,6 @@ error::Error GLES2DecoderImpl::HandleBindTexImage2DCHROMIUM(
return error::kNoError;
}
-error::Error GLES2DecoderImpl::HandleBindTexImage2DWithInternalformatCHROMIUM(
- uint32_t immediate_data_size,
- const volatile void* cmd_data) {
- const volatile gles2::cmds::BindTexImage2DWithInternalformatCHROMIUM& c =
- *static_cast<const volatile gles2::cmds::
- BindTexImage2DWithInternalformatCHROMIUM*>(cmd_data);
- GLenum target = static_cast<GLenum>(c.target);
- GLenum internalformat = static_cast<GLenum>(c.internalformat);
- GLint imageId = static_cast<GLint>(c.imageId);
- if (!validators_->texture_bind_target.IsValid(target)) {
- LOCAL_SET_GL_ERROR_INVALID_ENUM(
- "glBindTexImage2DWithInternalformatCHROMIUM", target, "target");
- return error::kNoError;
- }
- DoBindTexImage2DWithInternalformatCHROMIUM(target, internalformat, imageId);
- return error::kNoError;
-}
-
error::Error GLES2DecoderImpl::HandleReleaseTexImage2DCHROMIUM(
uint32_t immediate_data_size,
const volatile void* cmd_data) {
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698