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

Side by Side Diff: gpu/command_buffer/client/gpu_memory_buffer_factory.h

Issue 14456004: GPU client side changes for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Updated the extension documentation Created 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_ 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_ 6 #define GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_
7 7
8 #include "gles2_impl_export.h" 8 #include "gles2_impl_export.h"
9 #include "gpu/command_buffer/client/gpu_memory_buffer.h" 9 #include "gpu/command_buffer/client/gpu_memory_buffer.h"
10 10
11 namespace gpu { 11 namespace gpu {
12 namespace gles2 {
12 13
13 // Getter and setter for a GpuMemoryBuffer factory for the current process. 14 // Getter and setter for a GpuMemoryBuffer factory for the current process.
14 // Currently it is only used for Android Webview where both browser and 15 // Currently it is only used for Android Webview where both browser and
15 // renderer are within the same process. 16 // renderer are within the same process.
no sievers 2013/05/10 01:21:51 nit: Can the android webview comment go now that w
kaanb 2013/05/13 23:00:36 They'll go away when I remove this file and fold i
16 17
17 // It is not valid to call this method before the setter is called. 18 // It is not valid to call this method before the setter is called.
18 GLES2_IMPL_EXPORT const GpuMemoryBuffer::Creator& 19 GLES2_IMPL_EXPORT const GpuMemoryBuffer::Creator&
19 GetProcessDefaultGpuMemoryBufferFactory(); 20 GetProcessDefaultGpuMemoryBufferFactory();
20 21
21 // It is illegal to call the setter more than once. 22 // It is illegal to call the setter more than once.
22 GLES2_IMPL_EXPORT void SetProcessDefaultGpuMemoryBufferFactory( 23 GLES2_IMPL_EXPORT void SetProcessDefaultGpuMemoryBufferFactory(
23 const GpuMemoryBuffer::Creator& factory); 24 const GpuMemoryBuffer::Creator& factory);
24 25
26 } // namespace gles2
25 } // namespace gpu 27 } // namespace gpu
26 28
27 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_ 29 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698