diff options
Diffstat (limited to 'gpu/command_buffer/service/common_decoder.cc')
-rw-r--r-- | gpu/command_buffer/service/common_decoder.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/common_decoder.cc b/gpu/command_buffer/service/common_decoder.cc index a116d04..35eaf66 100644 --- a/gpu/command_buffer/service/common_decoder.cc +++ b/gpu/command_buffer/service/common_decoder.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -330,4 +330,10 @@ error::Error CommonDecoder::HandleGetBucketData( return error::kNoError; } +error::Error CommonDecoder::HandleYieldScheduler( + uint32 immediate_data_size, + const cmd::YieldScheduler& args) { + return error::kYield; +} + } // namespace gpu |