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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder.cc

Issue 1783743002: [WebGL] a bunch of small fixes: unnecessary arguments, typos... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index ca922438ca23ea5bbf51ee36d3400b98e8f397ff..c0f3b81d52111af67e1ec2a2b43b9b916ae7578f 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -7876,7 +7876,7 @@ bool GLES2DecoderImpl::SimulateAttrib0(
}
LOCAL_PERFORMANCE_WARNING(
- "Attribute 0 is disabled. This has signficant performance penalty");
+ "Attribute 0 is disabled. This has significant performance penalty");
LOCAL_COPY_REAL_GL_ERRORS_TO_WRAPPER(function_name);
glBindBuffer(GL_ARRAY_BUFFER, attrib_0_buffer_id_);
@@ -7965,7 +7965,7 @@ bool GLES2DecoderImpl::SimulateFixedAttribs(
}
LOCAL_PERFORMANCE_WARNING(
- "GL_FIXED attributes have a signficant performance penalty");
+ "GL_FIXED attributes have a significant performance penalty");
// NOTE: we could be smart and try to check if a buffer is used
// twice in 2 different attribs, find the overlapping parts and therefore

Powered by Google App Engine
This is Rietveld 408576698