summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/common/gles2_cmd_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/command_buffer/common/gles2_cmd_utils.cc')
-rw-r--r--gpu/command_buffer/common/gles2_cmd_utils.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpu/command_buffer/common/gles2_cmd_utils.cc b/gpu/command_buffer/common/gles2_cmd_utils.cc
index 79a4a48..bde062d 100644
--- a/gpu/command_buffer/common/gles2_cmd_utils.cc
+++ b/gpu/command_buffer/common/gles2_cmd_utils.cc
@@ -393,11 +393,11 @@ uint32 GLES2Util::GetGLDataTypeSizeForUniforms(int type) {
case GL_BOOL:
return sizeof(GLint); // NOLINT
case GL_BOOL_VEC2:
- return sizeof(GLint) * 1; // NOLINT
- case GL_BOOL_VEC3:
return sizeof(GLint) * 2; // NOLINT
- case GL_BOOL_VEC4:
+ case GL_BOOL_VEC3:
return sizeof(GLint) * 3; // NOLINT
+ case GL_BOOL_VEC4:
+ return sizeof(GLint) * 4; // NOLINT
case GL_FLOAT_MAT2:
return sizeof(GLfloat) * 2 * 2; // NOLINT
case GL_FLOAT_MAT3: