| 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 UI_GFX_GPU_MEMORY_BUFFER_H_ | 5 #ifndef UI_GFX_GPU_MEMORY_BUFFER_H_ |
| 6 #define UI_GFX_GPU_MEMORY_BUFFER_H_ | 6 #define UI_GFX_GPU_MEMORY_BUFFER_H_ |
| 7 | 7 |
| 8 #include "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ui/gfx/gfx_export.h" | 10 #include "ui/gfx/gfx_export.h" |
| 11 | 11 |
| 12 #if defined(OS_ANDROID) | 12 #if defined(OS_ANDROID) |
| 13 #include <third_party/khronos/EGL/egl.h> | 13 #include <third_party/khronos/EGL/egl.h> |
| 14 #endif | 14 #endif |
| 15 | 15 |
| 16 namespace gfx { | 16 namespace gfx { |
| 17 | 17 |
| 18 enum GpuMemoryBufferType { | 18 enum GpuMemoryBufferType { |
| 19 EMPTY_BUFFER, | 19 EMPTY_BUFFER, |
| 20 SHARED_MEMORY_BUFFER, | 20 SHARED_MEMORY_BUFFER, |
| 21 IO_SURFACE_BUFFER, |
| 21 ANDROID_NATIVE_BUFFER, | 22 ANDROID_NATIVE_BUFFER, |
| 22 IO_SURFACE_BUFFER, | 23 SURFACE_TEXTURE_BUFFER, |
| 23 GPU_MEMORY_BUFFER_TYPE_LAST = IO_SURFACE_BUFFER | 24 GPU_MEMORY_BUFFER_TYPE_LAST = SURFACE_TEXTURE_BUFFER |
| 24 }; | 25 }; |
| 25 | 26 |
| 27 #if defined(OS_ANDROID) |
| 28 struct SurfaceTextureId { |
| 29 SurfaceTextureId() : primary_id(0), secondary_id(0) {} |
| 30 SurfaceTextureId(int32 primary_id, int32 secondary_id) |
| 31 : primary_id(primary_id), secondary_id(secondary_id) {} |
| 32 int32 primary_id; |
| 33 int32 secondary_id; |
| 34 }; |
| 35 #endif |
| 36 |
| 26 struct GpuMemoryBufferHandle { | 37 struct GpuMemoryBufferHandle { |
| 27 GpuMemoryBufferHandle() | 38 GpuMemoryBufferHandle() |
| 28 : type(EMPTY_BUFFER), | 39 : type(EMPTY_BUFFER), |
| 29 handle(base::SharedMemory::NULLHandle()) | 40 handle(base::SharedMemory::NULLHandle()) |
| 41 #if defined(OS_MACOSX) |
| 42 , io_surface_id(0) |
| 43 #endif |
| 30 #if defined(OS_ANDROID) | 44 #if defined(OS_ANDROID) |
| 31 , native_buffer(NULL) | 45 , native_buffer(NULL) |
| 32 #endif | 46 #endif |
| 33 #if defined(OS_MACOSX) | |
| 34 , io_surface_id(0) | |
| 35 #endif | |
| 36 { | 47 { |
| 37 } | 48 } |
| 38 bool is_null() const { return type == EMPTY_BUFFER; } | 49 bool is_null() const { return type == EMPTY_BUFFER; } |
| 39 GpuMemoryBufferType type; | 50 GpuMemoryBufferType type; |
| 40 base::SharedMemoryHandle handle; | 51 base::SharedMemoryHandle handle; |
| 41 #if defined(OS_ANDROID) | |
| 42 EGLClientBuffer native_buffer; | |
| 43 #endif | |
| 44 #if defined(OS_MACOSX) | 52 #if defined(OS_MACOSX) |
| 45 uint32 io_surface_id; | 53 uint32 io_surface_id; |
| 46 #endif | 54 #endif |
| 47 | 55 #if defined(OS_ANDROID) |
| 56 EGLClientBuffer native_buffer; |
| 57 SurfaceTextureId surface_texture_id; |
| 58 #endif |
| 48 }; | 59 }; |
| 49 | 60 |
| 50 // Interface for creating and accessing a zero-copy GPU memory buffer. | 61 // Interface for creating and accessing a zero-copy GPU memory buffer. |
| 51 // This design evolved from the generalization of GraphicBuffer API | 62 // This design evolved from the generalization of GraphicBuffer API |
| 52 // of Android framework. | 63 // of Android framework. |
| 53 // | 64 // |
| 54 // THREADING CONSIDERATIONS: | 65 // THREADING CONSIDERATIONS: |
| 55 // | 66 // |
| 56 // This interface is thread-safe. However, multiple threads mapping | 67 // This interface is thread-safe. However, multiple threads mapping |
| 57 // a buffer for Write or ReadOrWrite simultaneously may result in undefined | 68 // a buffer for Write or ReadOrWrite simultaneously may result in undefined |
| (...skipping 24 matching lines...) Expand all Loading... |
| 82 // Returns the stride in bytes for the buffer. | 93 // Returns the stride in bytes for the buffer. |
| 83 virtual uint32 GetStride() const = 0; | 94 virtual uint32 GetStride() const = 0; |
| 84 | 95 |
| 85 // Returns a platform specific handle for this buffer. | 96 // Returns a platform specific handle for this buffer. |
| 86 virtual GpuMemoryBufferHandle GetHandle() const = 0; | 97 virtual GpuMemoryBufferHandle GetHandle() const = 0; |
| 87 }; | 98 }; |
| 88 | 99 |
| 89 } // namespace gfx | 100 } // namespace gfx |
| 90 | 101 |
| 91 #endif // UI_GFX_GPU_MEMORY_BUFFER_H_ | 102 #endif // UI_GFX_GPU_MEMORY_BUFFER_H_ |
| OLD | NEW |