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

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

Issue 255713008: Change glimage to accept a type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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
« no previous file with comments | « gpu/gles2_conform_support/egl/display.h ('k') | mojo/gles2/command_buffer_client_impl.h » ('j') | 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"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 } 270 }
271 271
272 gpu::Capabilities Display::GetCapabilities() { 272 gpu::Capabilities Display::GetCapabilities() {
273 return decoder_->GetCapabilities(); 273 return decoder_->GetCapabilities();
274 } 274 }
275 275
276 gfx::GpuMemoryBuffer* Display::CreateGpuMemoryBuffer( 276 gfx::GpuMemoryBuffer* Display::CreateGpuMemoryBuffer(
277 size_t width, 277 size_t width,
278 size_t height, 278 size_t height,
279 unsigned internalformat, 279 unsigned internalformat,
280 unsigned usage,
280 int32* id) { 281 int32* id) {
281 NOTIMPLEMENTED(); 282 NOTIMPLEMENTED();
282 return NULL; 283 return NULL;
283 } 284 }
284 285
285 void Display::DestroyGpuMemoryBuffer(int32 id) { 286 void Display::DestroyGpuMemoryBuffer(int32 id) {
286 NOTIMPLEMENTED(); 287 NOTIMPLEMENTED();
287 } 288 }
288 289
289 uint32 Display::InsertSyncPoint() { 290 uint32 Display::InsertSyncPoint() {
(...skipping 21 matching lines...) Expand all
311 void Display::Echo(const base::Closure& callback) { 312 void Display::Echo(const base::Closure& callback) {
312 NOTIMPLEMENTED(); 313 NOTIMPLEMENTED();
313 } 314 }
314 315
315 uint32 Display::CreateStreamTexture(uint32 texture_id) { 316 uint32 Display::CreateStreamTexture(uint32 texture_id) {
316 NOTIMPLEMENTED(); 317 NOTIMPLEMENTED();
317 return 0; 318 return 0;
318 } 319 }
319 320
320 } // namespace egl 321 } // namespace egl
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/egl/display.h ('k') | mojo/gles2/command_buffer_client_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698