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

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

Issue 2844393004: Passthrough CmdDecoder: Reset unpack state on some TexImage (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
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
index 7ab02bc953e5f7b8e172a4d01f455d40ad689e37..84a3082e66f9baaf84cc28f3349470f9a71ed243 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
@@ -473,7 +473,7 @@ error::Error DoTexImage2D(GLenum target,
GLint border,
GLenum format,
GLenum type,
- GLsizei imagesize,
+ GLsizei image_size,
const void* pixels);
error::Error DoTexImage3D(GLenum target,
GLint level,
@@ -484,7 +484,7 @@ error::Error DoTexImage3D(GLenum target,
GLint border,
GLenum format,
GLenum type,
- GLsizei imagesize,
+ GLsizei image_size,
const void* pixels);
error::Error DoTexParameterf(GLenum target, GLenum pname, GLfloat param);
error::Error DoTexParameterfv(GLenum target,
@@ -508,7 +508,7 @@ error::Error DoTexSubImage2D(GLenum target,
GLsizei height,
GLenum format,
GLenum type,
- GLsizei imagesize,
+ GLsizei image_size,
const void* pixels);
error::Error DoTexSubImage3D(GLenum target,
GLint level,
@@ -520,7 +520,7 @@ error::Error DoTexSubImage3D(GLenum target,
GLsizei depth,
GLenum format,
GLenum type,
- GLsizei imagesize,
+ GLsizei image_size,
const void* pixels);
error::Error DoTransformFeedbackVaryings(GLuint program,
GLsizei count,
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698