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

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

Issue 14456004: GPU client side changes for GpuMemoryBuffers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glapi
Patch Set: Add missing parameter in GLES2Implementation ctor in GLES2Implementation unittest 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 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_CLIENT_IMAGE_FACTORY_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_IMAGE_FACTORY_H_
7
8 #include <GLES2/gl2.h>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "gles2_impl_export.h"
12
13 namespace gpu {
14 class GpuMemoryBuffer;
15
16 namespace gles2 {
17
18 class GLES2_IMPL_EXPORT ImageFactory {
19
20 public:
21 virtual ~ImageFactory() {}
22
23 // Create a GpuMemoryBuffer and makes it available to the
24 // service side by inserting it to the ImageManager.
25 virtual scoped_ptr<GpuMemoryBuffer> CreateGpuMemoryBuffer(
26 int width, int height, GLenum internalformat, unsigned* image_id) = 0;
27 virtual void DeleteGpuMemoryBuffer(unsigned image_id) = 0;
28 };
29
30 } // namespace gles2
31 } // namespace gpu
32
33 #endif // GPU_COMMAND_BUFFER_CLIENT_IMAGE_FACTORY_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gpu_memory_buffer_tracker.cc ('k') | gpu/command_buffer/client/image_factory_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698