summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer
diff options
context:
space:
mode:
authorjbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-01 23:08:05 +0000
committerjbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-01 23:08:05 +0000
commit5b6838b421fe7e4d4bcd027035f049164901591d (patch)
treeee9d82922707eab749cc742e35d5b15c24b1c9b9 /gpu/command_buffer
parent5553d5bcd8c1f0d90d74a2a52a4c9af51d730d01 (diff)
downloadchromium_src-5b6838b421fe7e4d4bcd027035f049164901591d.zip
chromium_src-5b6838b421fe7e4d4bcd027035f049164901591d.tar.gz
chromium_src-5b6838b421fe7e4d4bcd027035f049164901591d.tar.bz2
Remove old GPU latency test.
This is mostly redundant with the new telemetry-based latency tests. BUG=249207 Review URL: https://chromiumcodereview.appspot.com/17847009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209533 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer')
-rw-r--r--gpu/command_buffer/service/gles2_cmd_decoder.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index ed54bce..852e297 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -4695,11 +4695,6 @@ error::Error GLES2DecoderImpl::HandleRegisterSharedIdsCHROMIUM(
error::Error GLES2DecoderImpl::DoClear(GLbitfield mask) {
DCHECK(!ShouldDeferDraws());
if (CheckBoundFramebuffersValid("glClear")) {
- UNSHIPPED_TRACE_EVENT_INSTANT2(
- "test_gpu", "DoClear",
- TRACE_EVENT_SCOPE_THREAD,
- "red", state_.color_clear_red,
- "green", state_.color_clear_green);
ApplyDirtyState();
glClear(mask);
}
@@ -4954,8 +4949,6 @@ void GLES2DecoderImpl::DoBlitFramebufferEXT(
srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
}
EnableDisable(GL_SCISSOR_TEST, state_.enable_flags.scissor_test);
- UNSHIPPED_TRACE_EVENT_INSTANT1("test_gpu", "DoBlit", TRACE_EVENT_SCOPE_THREAD,
- "width", srcX1 - srcX0);
}
void GLES2DecoderImpl::DoRenderbufferStorageMultisample(