summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/client/gles2_implementation.cc
diff options
context:
space:
mode:
authoryunchao.he <yunchao.he@intel.com>2016-03-11 03:25:57 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-11 11:27:33 +0000
commit801186267c23a3e727f2aac27712bf7d3a620370 (patch)
treed771a5cdb50f3a74f14897c417f0f3c47283fa4c /gpu/command_buffer/client/gles2_implementation.cc
parentd76421171daa1327f8e1c10ee710ebf911a90d2f (diff)
downloadchromium_src-801186267c23a3e727f2aac27712bf7d3a620370.zip
chromium_src-801186267c23a3e727f2aac27712bf7d3a620370.tar.gz
chromium_src-801186267c23a3e727f2aac27712bf7d3a620370.tar.bz2
[WebGL] a bunch of small fixes: unnecessary arguments, typos...
BUG=295792 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel;tryserver.chromium.mac:mac_optional_gpu_tests_rel Review URL: https://codereview.chromium.org/1783743002 Cr-Commit-Position: refs/heads/master@{#380601}
Diffstat (limited to 'gpu/command_buffer/client/gles2_implementation.cc')
-rw-r--r--gpu/command_buffer/client/gles2_implementation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
index b54561d..5bad58f 100644
--- a/gpu/command_buffer/client/gles2_implementation.cc
+++ b/gpu/command_buffer/client/gles2_implementation.cc
@@ -1279,7 +1279,7 @@ void GLES2Implementation::DrawElements(
<< count << ", "
<< GLES2Util::GetStringIndexType(type) << ", "
<< static_cast<const void*>(indices) << ")");
- DrawElementsImpl(mode, count, type, indices, "glDrawRangeElements");
+ DrawElementsImpl(mode, count, type, indices, "glDrawElements");
}
void GLES2Implementation::DrawRangeElements(