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

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

Issue 20658002: gpu: Add GpuMemoryBufferFactory interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
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_GPU_MEMORY_FACTORY_BUFFER_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_FACTORY_BUFFER_H_
7
8 #include "gpu/gpu_export.h"
9
10 namespace gpu {
11 class GpuMemoryBuffer;
12
13 class GPU_EXPORT GpuMemoryBufferFactory {
14 public:
15 virtual gpu::GpuMemoryBuffer* CreateGpuMemoryBuffer(
joth 2013/07/26 05:28:05 Out of interest why does this need to be a factory
reveman 2013/07/26 15:40:57 This will replace the ImageFactory interface and b
16 size_t width,
17 size_t height,
18 unsigned internalformat) = 0;
19
20 protected:
21 virtual ~GpuMemoryBufferFactory() {}
22 };
23
24 } // namespace gpu
25
26 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698