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 UI_GL_GL_IMAGE_MEMORY_H_ | 5 #ifndef UI_GL_GL_IMAGE_MEMORY_H_ |
6 #define UI_GL_GL_IMAGE_MEMORY_H_ | 6 #define UI_GL_GL_IMAGE_MEMORY_H_ |
7 | 7 |
8 #include "ui/gl/gl_image.h" | 8 #include "ui/gl/gl_image.h" |
9 | 9 |
10 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \ | |
11 defined(USE_OZONE) | |
12 #include <EGL/egl.h> | |
13 #include <EGL/eglext.h> | |
14 #endif | |
15 | |
16 #include "base/numerics/safe_math.h" | 10 #include "base/numerics/safe_math.h" |
17 #include "ui/gfx/gpu_memory_buffer.h" | 11 #include "ui/gfx/buffer_types.h" |
18 | 12 |
19 namespace gfx { | 13 namespace gfx { |
20 | 14 |
21 class GL_EXPORT GLImageMemory : public GLImage { | 15 class GL_EXPORT GLImageMemory : public GLImage { |
22 public: | 16 public: |
23 GLImageMemory(const Size& size, unsigned internalformat); | 17 GLImageMemory(const Size& size, unsigned internalformat); |
24 | 18 |
25 static bool StrideInBytes(size_t width, | 19 static bool StrideInBytes(size_t width, |
26 BufferFormat format, | 20 BufferFormat format, |
27 size_t* stride_in_bytes); | 21 size_t* stride_in_bytes); |
28 | 22 |
29 bool Initialize(const unsigned char* memory, BufferFormat format); | 23 bool Initialize(const unsigned char* memory, BufferFormat format); |
30 | 24 |
31 // Overridden from GLImage: | 25 // Overridden from GLImage: |
32 void Destroy(bool have_context) override; | 26 void Destroy(bool have_context) override; |
33 Size GetSize() override; | 27 Size GetSize() override; |
34 unsigned GetInternalFormat() override; | 28 unsigned GetInternalFormat() override; |
35 bool BindTexImage(unsigned target) override; | 29 bool BindTexImage(unsigned target) override; |
36 void ReleaseTexImage(unsigned target) override {} | 30 void ReleaseTexImage(unsigned target) override {} |
| 31 bool CopyTexImage(unsigned target) override; |
37 bool CopyTexSubImage(unsigned target, | 32 bool CopyTexSubImage(unsigned target, |
38 const Point& offset, | 33 const Point& offset, |
39 const Rect& rect) override; | 34 const Rect& rect) override; |
40 void WillUseTexImage() override; | |
41 void DidUseTexImage() override; | |
42 void WillModifyTexImage() override {} | |
43 void DidModifyTexImage() override {} | |
44 bool ScheduleOverlayPlane(AcceleratedWidget widget, | 35 bool ScheduleOverlayPlane(AcceleratedWidget widget, |
45 int z_order, | 36 int z_order, |
46 OverlayTransform transform, | 37 OverlayTransform transform, |
47 const Rect& bounds_rect, | 38 const Rect& bounds_rect, |
48 const RectF& crop_rect) override; | 39 const RectF& crop_rect) override; |
49 | 40 |
50 // Only dumps the GLTexture portion of the memory usage. Subclasses are | |
51 // responsible for dumping the CPU-side memory. | |
52 void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, | |
53 uint64_t process_tracing_id, | |
54 const std::string& dump_name) override; | |
55 | |
56 protected: | 41 protected: |
57 ~GLImageMemory() override; | 42 ~GLImageMemory() override; |
58 | 43 |
59 BufferFormat format() const { return format_; } | 44 BufferFormat format() const { return format_; } |
60 | 45 |
61 private: | 46 private: |
62 void DoBindTexImage(unsigned target); | |
63 | |
64 const Size size_; | 47 const Size size_; |
65 const unsigned internalformat_; | 48 const unsigned internalformat_; |
66 const unsigned char* memory_; | 49 const unsigned char* memory_; |
67 BufferFormat format_; | 50 BufferFormat format_; |
68 bool in_use_; | |
69 unsigned target_; | |
70 bool need_do_bind_tex_image_; | |
71 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \ | |
72 defined(USE_OZONE) | |
73 unsigned egl_texture_id_; | |
74 EGLImageKHR egl_image_; | |
75 #endif | |
76 | 51 |
77 DISALLOW_COPY_AND_ASSIGN(GLImageMemory); | 52 DISALLOW_COPY_AND_ASSIGN(GLImageMemory); |
78 }; | 53 }; |
79 | 54 |
80 } // namespace gfx | 55 } // namespace gfx |
81 | 56 |
82 #endif // UI_GL_GL_IMAGE_MEMORY_H_ | 57 #endif // UI_GL_GL_IMAGE_MEMORY_H_ |
OLD | NEW |