| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ |
| #define CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ |
| |
| #include "base/memory/ref_counted.h" |
| #include "content/common/gpu/gpu_memory_buffer_factory.h" |
| #include "gpu/command_buffer/service/image_factory.h" |
| #include "ui/gfx/geometry/size.h" |
| #include "ui/gfx/gpu_memory_buffer.h" |
| #include "ui/ozone/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h" |
| |
| namespace gfx { |
| class GLImage; |
| } |
| |
| namespace content { |
| |
| class GpuMemoryBufferFactoryOzoneNativeBuffer : public GpuMemoryBufferFactory, |
| public gpu::ImageFactory { |
| public: |
| GpuMemoryBufferFactoryOzoneNativeBuffer(); |
| ~GpuMemoryBufferFactoryOzoneNativeBuffer() override; |
| |
| static bool IsGpuMemoryBufferConfigurationSupported( |
| gfx::GpuMemoryBuffer::Format format, |
| gfx::GpuMemoryBuffer::Usage usage); |
| |
| // Overridden from GpuMemoryBufferFactory: |
| void GetSupportedGpuMemoryBufferConfigurations( |
| std::vector<Configuration>* configurations) override; |
| gfx::GpuMemoryBufferHandle CreateGpuMemoryBuffer( |
| gfx::GpuMemoryBufferId id, |
| const gfx::Size& size, |
| gfx::GpuMemoryBuffer::Format format, |
| gfx::GpuMemoryBuffer::Usage usage, |
| int client_id, |
| gfx::PluginWindowHandle surface_handle) override; |
| void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id, |
| int client_id) override; |
| gpu::ImageFactory* AsImageFactory() override; |
| |
| // Overridden from gpu::ImageFactory: |
| scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer( |
| const gfx::GpuMemoryBufferHandle& handle, |
| const gfx::Size& size, |
| gfx::GpuMemoryBuffer::Format format, |
| unsigned internalformat, |
| int client_id) override; |
| |
| private: |
| ui::GpuMemoryBufferFactoryOzoneNativeBuffer ozone_native_buffer_factory_; |
| |
| DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferFactoryOzoneNativeBuffer); |
| }; |
| |
| } // namespace content |
| |
| #endif // CONTENT_COMMON_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ |