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

Side by Side Diff: gpu/command_buffer/common/image_buffer_manager.h

Issue 14456004: GPU client side changes for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Implement DeleteImageBuffersHelper and remove unused GetNativeBufferForGpuMemoryBuffer 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GPU_COMMAND_BUFFER_COMMON_IMAGE_BUFFER_MANAGER_H_
6 #define GPU_COMMAND_BUFFER_COMMON_IMAGE_BUFFER_MANAGER_H_
7
8 #include "base/basictypes.h"
9
10 namespace gpu {
11 namespace gles2 {
12
13 // TODO(kaanb): Is GLES2_IMPL_EXPORT the right macro to use?
14 class ImageManagerProxy {
joth 2013/05/03 00:49:37 can we simplify this? - remove this interface - no
15 public:
16 virtual ~ImageManagerProxy() {}
17 virtual void AddImageBuffer(void* buffer, int width, int height,
18 int image_id) = 0;
19 };
20
21 } // namespace gles2
22 } // namespace gpu
23
24 #endif // GPU_COMMAND_BUFFER_COMMON_IMAGE_BUFFER_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698