OLD | NEW |
---|---|
(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_ | |
OLD | NEW |