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

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

Issue 116863003: gpu: Reuse transfer buffers more aggresively (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: [WIP] Introduced internal SetAsyncToken command buffer command Created 6 years, 11 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/common_decoder.cc
diff --git a/gpu/command_buffer/service/common_decoder.cc b/gpu/command_buffer/service/common_decoder.cc
index 72f30a30bfc6132d4585fc3a4d589e66328ef794..700c19130eae6abb7ab27d4fee694cacf7ecbb9c 100644
--- a/gpu/command_buffer/service/common_decoder.cc
+++ b/gpu/command_buffer/service/common_decoder.cc
@@ -176,6 +176,13 @@ error::Error CommonDecoder::HandleSetToken(
return error::kNoError;
}
+error::Error CommonDecoder::HandleSetAsyncToken(
+ uint32 immediate_data_size,
+ const cmd::SetAsyncToken& args) {
+ OnSetAsyncToken(args.async_token);
+ return error::kNoError;
+}
+
error::Error CommonDecoder::HandleSetBucketSize(
uint32 immediate_data_size,
const cmd::SetBucketSize& args) {

Powered by Google App Engine
This is Rietveld 408576698