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

Side by Side Diff: gpu/command_buffer/service/command_buffer_service.cc

Issue 12581004: Move InsertSyncPoint to GLES2Interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gpu/command_buffer/service/command_buffer_service.h" 5 #include "gpu/command_buffer/service/command_buffer_service.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "base/process_util.h" 9 #include "base/process_util.h"
10 #include "base/debug/trace_event.h" 10 #include "base/debug/trace_event.h"
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 void CommandBufferService::SetGetBufferChangeCallback( 193 void CommandBufferService::SetGetBufferChangeCallback(
194 const GetBufferChangedCallback& callback) { 194 const GetBufferChangedCallback& callback) {
195 get_buffer_change_callback_ = callback; 195 get_buffer_change_callback_ = callback;
196 } 196 }
197 197
198 void CommandBufferService::SetParseErrorCallback( 198 void CommandBufferService::SetParseErrorCallback(
199 const base::Closure& callback) { 199 const base::Closure& callback) {
200 parse_error_callback_ = callback; 200 parse_error_callback_ = callback;
201 } 201 }
202 202
203 uint32 CommandBufferService::InsertSyncPoint() {
204 NOTREACHED();
205 return 0;
206 }
207
203 } // namespace gpu 208 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/command_buffer_service.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698