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) || \ | 10 #if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || \ |
11 defined(USE_OZONE) | 11 defined(USE_OZONE) |
12 #include <EGL/egl.h> | 12 #include <EGL/egl.h> |
13 #include <EGL/eglext.h> | 13 #include <EGL/eglext.h> |
14 #endif | 14 #endif |
15 | 15 |
16 #include "base/numerics/safe_math.h" | |
17 #include "ui/gfx/gpu_memory_buffer.h" | 16 #include "ui/gfx/gpu_memory_buffer.h" |
18 | 17 |
19 namespace gfx { | 18 namespace gfx { |
20 | 19 |
21 class GL_EXPORT GLImageMemory : public GLImage { | 20 class GL_EXPORT GLImageMemory : public GLImage { |
22 public: | 21 public: |
23 GLImageMemory(const gfx::Size& size, unsigned internalformat); | 22 GLImageMemory(const gfx::Size& size, unsigned internalformat); |
24 | 23 |
25 static bool StrideInBytes(size_t width, | 24 static size_t BytesPerPixel(gfx::GpuMemoryBuffer::Format format); |
26 gfx::GpuMemoryBuffer::Format format, | |
27 size_t* stride_in_bytes); | |
28 | 25 |
29 bool Initialize(const unsigned char* memory, | 26 bool Initialize(const unsigned char* memory, |
30 gfx::GpuMemoryBuffer::Format format); | 27 gfx::GpuMemoryBuffer::Format format); |
31 | 28 |
32 // Overridden from GLImage: | 29 // Overridden from GLImage: |
33 void Destroy(bool have_context) override; | 30 void Destroy(bool have_context) override; |
34 gfx::Size GetSize() override; | 31 gfx::Size GetSize() override; |
35 bool BindTexImage(unsigned target) override; | 32 bool BindTexImage(unsigned target) override; |
36 void ReleaseTexImage(unsigned target) override {} | 33 void ReleaseTexImage(unsigned target) override {} |
37 bool CopyTexImage(unsigned target) override; | 34 bool CopyTexImage(unsigned target) override; |
(...skipping 25 matching lines...) Expand all Loading... |
63 unsigned egl_texture_id_; | 60 unsigned egl_texture_id_; |
64 EGLImageKHR egl_image_; | 61 EGLImageKHR egl_image_; |
65 #endif | 62 #endif |
66 | 63 |
67 DISALLOW_COPY_AND_ASSIGN(GLImageMemory); | 64 DISALLOW_COPY_AND_ASSIGN(GLImageMemory); |
68 }; | 65 }; |
69 | 66 |
70 } // namespace gfx | 67 } // namespace gfx |
71 | 68 |
72 #endif // UI_GL_GL_IMAGE_MEMORY_H_ | 69 #endif // UI_GL_GL_IMAGE_MEMORY_H_ |
OLD | NEW |