| OLD | NEW |
| 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_COMMON_GPU_CONTROL_H_ | 5 #ifndef GPU_COMMAND_BUFFER_COMMON_GPU_CONTROL_H_ |
| 6 #define GPU_COMMAND_BUFFER_COMMON_GPU_CONTROL_H_ | 6 #define GPU_COMMAND_BUFFER_COMMON_GPU_CONTROL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "gpu/command_buffer/common/capabilities.h" | |
| 12 #include "gpu/command_buffer/common/mailbox.h" | 11 #include "gpu/command_buffer/common/mailbox.h" |
| 13 #include "gpu/command_buffer/common/types.h" | 12 #include "gpu/command_buffer/common/types.h" |
| 14 #include "gpu/gpu_export.h" | 13 #include "gpu/gpu_export.h" |
| 15 | 14 |
| 16 namespace gfx { | 15 namespace gfx { |
| 17 class GpuMemoryBuffer; | 16 class GpuMemoryBuffer; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace gpu { | 19 namespace gpu { |
| 21 struct ManagedMemoryStats; | 20 struct ManagedMemoryStats; |
| 22 | 21 |
| 23 // Common interface for GpuControl implementations. | 22 // Common interface for GpuControl implementations. |
| 24 class GPU_EXPORT GpuControl { | 23 class GPU_EXPORT GpuControl { |
| 25 public: | 24 public: |
| 26 GpuControl() {} | 25 GpuControl() {} |
| 27 virtual ~GpuControl() {} | 26 virtual ~GpuControl() {} |
| 28 | 27 |
| 29 virtual Capabilities GetCapabilities() = 0; | |
| 30 | |
| 31 // Create a gpu memory buffer of the given dimensions and format. Returns | 28 // Create a gpu memory buffer of the given dimensions and format. Returns |
| 32 // its ID or -1 on error. | 29 // its ID or -1 on error. |
| 33 virtual gfx::GpuMemoryBuffer* CreateGpuMemoryBuffer( | 30 virtual gfx::GpuMemoryBuffer* CreateGpuMemoryBuffer( |
| 34 size_t width, | 31 size_t width, |
| 35 size_t height, | 32 size_t height, |
| 36 unsigned internalformat, | 33 unsigned internalformat, |
| 37 int32* id) = 0; | 34 int32* id) = 0; |
| 38 | 35 |
| 39 // Destroy a gpu memory buffer. The ID must be positive. | 36 // Destroy a gpu memory buffer. The ID must be positive. |
| 40 virtual void DestroyGpuMemoryBuffer(int32 id) = 0; | 37 virtual void DestroyGpuMemoryBuffer(int32 id) = 0; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 62 // returns a stream identifier. | 59 // returns a stream identifier. |
| 63 virtual uint32 CreateStreamTexture(uint32 texture_id) = 0; | 60 virtual uint32 CreateStreamTexture(uint32 texture_id) = 0; |
| 64 | 61 |
| 65 private: | 62 private: |
| 66 DISALLOW_COPY_AND_ASSIGN(GpuControl); | 63 DISALLOW_COPY_AND_ASSIGN(GpuControl); |
| 67 }; | 64 }; |
| 68 | 65 |
| 69 } // namespace gpu | 66 } // namespace gpu |
| 70 | 67 |
| 71 #endif // GPU_COMMAND_BUFFER_COMMON_GPU_CONTROL_H_ | 68 #endif // GPU_COMMAND_BUFFER_COMMON_GPU_CONTROL_H_ |
| OLD | NEW |