| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ | 5 #ifndef CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ |
| 6 #define CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ | 6 #define CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ |
| 7 | 7 |
| 8 #include "base/containers/hash_tables.h" | 8 #include "base/containers/hash_tables.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
| 11 #include "content/common/content_export.h" |
| 11 #include "content/common/gpu/gpu_memory_buffer_factory.h" | 12 #include "content/common/gpu/gpu_memory_buffer_factory.h" |
| 12 #include "gpu/command_buffer/service/image_factory.h" | 13 #include "gpu/command_buffer/service/image_factory.h" |
| 13 #include "ui/gfx/geometry/size.h" | 14 #include "ui/gfx/geometry/size.h" |
| 14 #include "ui/gfx/gpu_memory_buffer.h" | 15 #include "ui/gfx/gpu_memory_buffer.h" |
| 15 | 16 |
| 16 namespace gfx { | 17 namespace gfx { |
| 17 class GLImage; | 18 class GLImage; |
| 18 class SurfaceTexture; | 19 class SurfaceTexture; |
| 19 } | 20 } |
| 20 | 21 |
| 21 namespace content { | 22 namespace content { |
| 22 | 23 |
| 23 class GpuMemoryBufferFactorySurfaceTexture : public GpuMemoryBufferFactory, | 24 class CONTENT_EXPORT GpuMemoryBufferFactorySurfaceTexture |
| 24 public gpu::ImageFactory { | 25 : public GpuMemoryBufferFactory, |
| 26 public gpu::ImageFactory { |
| 25 public: | 27 public: |
| 26 GpuMemoryBufferFactorySurfaceTexture(); | 28 GpuMemoryBufferFactorySurfaceTexture(); |
| 27 ~GpuMemoryBufferFactorySurfaceTexture() override; | 29 ~GpuMemoryBufferFactorySurfaceTexture() override; |
| 28 | 30 |
| 29 static bool IsGpuMemoryBufferConfigurationSupported(gfx::BufferFormat format, | 31 static bool IsGpuMemoryBufferConfigurationSupported(gfx::BufferFormat format, |
| 30 gfx::BufferUsage usage); | 32 gfx::BufferUsage usage); |
| 31 | 33 |
| 32 // Overridden from GpuMemoryBufferFactory: | 34 // Overridden from GpuMemoryBufferFactory: |
| 33 void GetSupportedGpuMemoryBufferConfigurations( | |
| 34 std::vector<Configuration>* configurations) override; | |
| 35 gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer( | 35 gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer( |
| 36 gfx::GpuMemoryBufferId id, | 36 gfx::GpuMemoryBufferId id, |
| 37 const gfx::Size& size, | 37 const gfx::Size& size, |
| 38 gfx::BufferFormat format, | 38 gfx::BufferFormat format, |
| 39 gfx::BufferUsage usage, | 39 gfx::BufferUsage usage, |
| 40 int client_id, | 40 int client_id, |
| 41 gfx::PluginWindowHandle surface_handle) override; | 41 gfx::PluginWindowHandle surface_handle) override; |
| 42 void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id, | 42 void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id, |
| 43 int client_id) override; | 43 int client_id) override; |
| 44 gpu::ImageFactory* AsImageFactory() override; | 44 gpu::ImageFactory* AsImageFactory() override; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 55 typedef std::pair<int, int> SurfaceTextureMapKey; | 55 typedef std::pair<int, int> SurfaceTextureMapKey; |
| 56 typedef base::hash_map<SurfaceTextureMapKey, | 56 typedef base::hash_map<SurfaceTextureMapKey, |
| 57 scoped_refptr<gfx::SurfaceTexture>> SurfaceTextureMap; | 57 scoped_refptr<gfx::SurfaceTexture>> SurfaceTextureMap; |
| 58 SurfaceTextureMap surface_textures_; | 58 SurfaceTextureMap surface_textures_; |
| 59 base::Lock surface_textures_lock_; | 59 base::Lock surface_textures_lock_; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace content | 62 } // namespace content |
| 63 | 63 |
| 64 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ | 64 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_SURFACE_TEXTURE_H_ |
| OLD | NEW |