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 CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ |
6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ | 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ |
7 | 7 |
8 #include <IOSurface/IOSurfaceAPI.h> | 8 #include <IOSurface/IOSurfaceAPI.h> |
9 | 9 |
10 #include "base/mac/scoped_cftyperef.h" | 10 #include "base/mac/scoped_cftyperef.h" |
11 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" | 11 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 // Implementation of GPU memory buffer based on IO surfaces. | 15 // Implementation of GPU memory buffer based on IO surfaces. |
16 class GpuMemoryBufferImplIOSurface : public GpuMemoryBufferImpl { | 16 class GpuMemoryBufferImplIOSurface : public GpuMemoryBufferImpl { |
17 public: | 17 public: |
18 static void Create(const gfx::Size& size, | 18 static void Create(gfx::GpuMemoryBufferId id, |
| 19 const gfx::Size& size, |
19 Format format, | 20 Format format, |
20 int client_id, | 21 int client_id, |
21 const CreationCallback& callback); | 22 const CreationCallback& callback); |
22 | 23 |
23 static void AllocateForChildProcess(const gfx::Size& size, | 24 static void AllocateForChildProcess(gfx::GpuMemoryBufferId id, |
| 25 const gfx::Size& size, |
24 Format format, | 26 Format format, |
25 int child_client_id, | 27 int child_client_id, |
26 const AllocationCallback& callback); | 28 const AllocationCallback& callback); |
27 | 29 |
28 static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle( | 30 static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle( |
29 const gfx::GpuMemoryBufferHandle& handle, | 31 const gfx::GpuMemoryBufferHandle& handle, |
30 const gfx::Size& size, | 32 const gfx::Size& size, |
31 Format format, | 33 Format format, |
32 const DestructionCallback& callback); | 34 const DestructionCallback& callback); |
33 | 35 |
34 static bool IsFormatSupported(Format format); | 36 static bool IsFormatSupported(Format format); |
35 static bool IsUsageSupported(Usage usage); | 37 static bool IsUsageSupported(Usage usage); |
36 static bool IsConfigurationSupported(Format format, Usage usage); | 38 static bool IsConfigurationSupported(Format format, Usage usage); |
37 static uint32 PixelFormat(Format format); | 39 static uint32 PixelFormat(Format format); |
38 | 40 |
39 // Overridden from gfx::GpuMemoryBuffer: | 41 // Overridden from gfx::GpuMemoryBuffer: |
40 void* Map() override; | 42 void* Map() override; |
41 void Unmap() override; | 43 void Unmap() override; |
42 uint32 GetStride() const override; | 44 uint32 GetStride() const override; |
43 gfx::GpuMemoryBufferHandle GetHandle() const override; | 45 gfx::GpuMemoryBufferHandle GetHandle() const override; |
44 | 46 |
45 private: | 47 private: |
46 GpuMemoryBufferImplIOSurface(const gfx::Size& size, | 48 GpuMemoryBufferImplIOSurface(gfx::GpuMemoryBufferId id, |
| 49 const gfx::Size& size, |
47 Format format, | 50 Format format, |
48 const DestructionCallback& callback, | 51 const DestructionCallback& callback, |
49 IOSurfaceRef io_surface); | 52 IOSurfaceRef io_surface); |
50 ~GpuMemoryBufferImplIOSurface() override; | 53 ~GpuMemoryBufferImplIOSurface() override; |
51 | 54 |
52 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; | 55 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; |
53 | 56 |
54 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplIOSurface); | 57 DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplIOSurface); |
55 }; | 58 }; |
56 | 59 |
57 } // namespace content | 60 } // namespace content |
58 | 61 |
59 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ | 62 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_IO_SURFACE_H_ |
OLD | NEW |