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 EGL_CLIENT_BUFFER, | 21 EGL_CLIENT_BUFFER, |
22 IO_SURFACE_BUFFER, | 22 IO_SURFACE_BUFFER, |
23 GPU_MEMORY_BUFFER_TYPE_LAST = IO_SURFACE_BUFFER | 23 SURFACE_TEXTURE_BUFFER, |
24 GPU_MEMORY_BUFFER_TYPE_LAST = SURFACE_TEXTURE_BUFFER | |
24 }; | 25 }; |
25 | 26 |
26 struct GpuMemoryBufferHandle { | 27 struct GpuMemoryBufferHandle { |
27 GpuMemoryBufferHandle() | 28 GpuMemoryBufferHandle() |
28 : type(EMPTY_BUFFER), | 29 : type(EMPTY_BUFFER), |
29 handle(base::SharedMemory::NULLHandle()) | 30 handle(base::SharedMemory::NULLHandle()) |
30 #if defined(OS_ANDROID) | 31 #if defined(OS_ANDROID) |
31 , native_buffer(NULL) | 32 , native_buffer(NULL) |
32 #endif | 33 #endif |
33 #if defined(OS_MACOSX) | 34 #if defined(OS_MACOSX) |
34 , io_surface_id(0) | 35 , io_surface_id(0) |
35 #endif | 36 #endif |
37 #if defined(OS_ANDROID) | |
38 , surface_texture_id(0) | |
39 #endif | |
36 { | 40 { |
37 } | 41 } |
38 bool is_null() const { return type == EMPTY_BUFFER; } | 42 bool is_null() const { return type == EMPTY_BUFFER; } |
39 GpuMemoryBufferType type; | 43 GpuMemoryBufferType type; |
40 base::SharedMemoryHandle handle; | 44 base::SharedMemoryHandle handle; |
41 #if defined(OS_ANDROID) | 45 #if defined(OS_ANDROID) |
42 EGLClientBuffer native_buffer; | 46 EGLClientBuffer native_buffer; |
43 #endif | 47 #endif |
44 #if defined(OS_MACOSX) | 48 #if defined(OS_MACOSX) |
45 uint32 io_surface_id; | 49 uint32 io_surface_id; |
46 #endif | 50 #endif |
47 | 51 #if defined(OS_ANDROID) |
52 uint32 surface_texture_id; | |
epennerAtGoogle
2014/03/12 00:45:06
Throughout this patch, I'd like it if we can make
reveman
2014/03/12 16:07:06
Would a simple typedef int SurfaceTextureID help?
epennerAtGoogle
2014/03/12 19:46:28
Yeppers!
reveman
2014/03/13 21:36:00
I started doing this but realized I need to put it
| |
53 #endif | |
48 }; | 54 }; |
49 | 55 |
50 // Interface for creating and accessing a zero-copy GPU memory buffer. | 56 // Interface for creating and accessing a zero-copy GPU memory buffer. |
51 // This design evolved from the generalization of GraphicBuffer API | 57 // This design evolved from the generalization of GraphicBuffer API |
52 // of Android framework. | 58 // of Android framework. |
53 // | 59 // |
54 // THREADING CONSIDERATIONS: | 60 // THREADING CONSIDERATIONS: |
55 // | 61 // |
56 // This interface is thread-safe. However, multiple threads mapping | 62 // This interface is thread-safe. However, multiple threads mapping |
57 // a buffer for Write or ReadOrWrite simultaneously may result in undefined | 63 // 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. | 88 // Returns the stride in bytes for the buffer. |
83 virtual uint32 GetStride() const = 0; | 89 virtual uint32 GetStride() const = 0; |
84 | 90 |
85 // Returns a platform specific handle for this buffer. | 91 // Returns a platform specific handle for this buffer. |
86 virtual GpuMemoryBufferHandle GetHandle() const = 0; | 92 virtual GpuMemoryBufferHandle GetHandle() const = 0; |
87 }; | 93 }; |
88 | 94 |
89 } // namespace gfx | 95 } // namespace gfx |
90 | 96 |
91 #endif // UI_GFX_GPU_MEMORY_BUFFER_H_ | 97 #endif // UI_GFX_GPU_MEMORY_BUFFER_H_ |
OLD | NEW |