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

Side by Side Diff: gpu/gles2_conform_support/egl/display.cc

Issue 515943002: Manual fixups in gpu/ for scoped_refptr operator T* removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 3 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
« no previous file with comments | « gpu/command_buffer/tests/gl_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/gles2_conform_support/egl/display.h" 5 #include "gpu/gles2_conform_support/egl/display.h"
6 6
7 #include <vector> 7 #include <vector>
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/bind_helpers.h" 9 #include "base/bind_helpers.h"
10 #include "gpu/command_buffer/client/gles2_implementation.h" 10 #include "gpu/command_buffer/client/gles2_implementation.h"
11 #include "gpu/command_buffer/client/gles2_lib.h" 11 #include "gpu/command_buffer/client/gles2_lib.h"
12 #include "gpu/command_buffer/client/transfer_buffer.h" 12 #include "gpu/command_buffer/client/transfer_buffer.h"
13 #include "gpu/command_buffer/service/context_group.h" 13 #include "gpu/command_buffer/service/context_group.h"
14 #include "gpu/command_buffer/service/mailbox_manager.h"
15 #include "gpu/command_buffer/service/memory_tracking.h"
14 #include "gpu/command_buffer/service/transfer_buffer_manager.h" 16 #include "gpu/command_buffer/service/transfer_buffer_manager.h"
15 #include "gpu/gles2_conform_support/egl/config.h" 17 #include "gpu/gles2_conform_support/egl/config.h"
16 #include "gpu/gles2_conform_support/egl/surface.h" 18 #include "gpu/gles2_conform_support/egl/surface.h"
17 19
18 namespace { 20 namespace {
19 const int32 kCommandBufferSize = 1024 * 1024; 21 const int32 kCommandBufferSize = 1024 * 1024;
20 const int32 kTransferBufferSize = 512 * 1024; 22 const int32 kTransferBufferSize = 512 * 1024;
21 } 23 }
22 24
23 namespace egl { 25 namespace egl {
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 void Display::Echo(const base::Closure& callback) { 317 void Display::Echo(const base::Closure& callback) {
316 NOTIMPLEMENTED(); 318 NOTIMPLEMENTED();
317 } 319 }
318 320
319 uint32 Display::CreateStreamTexture(uint32 texture_id) { 321 uint32 Display::CreateStreamTexture(uint32 texture_id) {
320 NOTIMPLEMENTED(); 322 NOTIMPLEMENTED();
321 return 0; 323 return 0;
322 } 324 }
323 325
324 } // namespace egl 326 } // namespace egl
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698