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_GL_GL_IMAGE_IO_SURFACE_H_ | 5 #ifndef UI_GL_GL_IMAGE_IO_SURFACE_H_ |
6 #define UI_GL_GL_IMAGE_IO_SURFACE_H_ | 6 #define UI_GL_GL_IMAGE_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 "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
12 #include "ui/gfx/gpu_memory_buffer.h" | 12 #include "ui/gfx/gpu_memory_buffer.h" |
13 #include "ui/gl/gl_image.h" | 13 #include "ui/gl/gl_image.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 | 16 |
17 class GL_EXPORT GLImageIOSurface : public GLImage { | 17 class GL_EXPORT GLImageIOSurface : public GLImage { |
18 public: | 18 public: |
19 GLImageIOSurface(const gfx::Size& size, unsigned internalformat); | 19 GLImageIOSurface(const gfx::Size& size, unsigned internalformat); |
20 | 20 |
21 bool Initialize(IOSurfaceRef io_surface, GpuMemoryBuffer::Format format); | 21 bool Initialize(IOSurfaceRef io_surface, GpuMemoryBuffer::Format format); |
22 | 22 |
23 // Overridden from GLImage: | 23 // Overridden from GLImage: |
24 void Destroy(bool have_context) override; | 24 void Destroy(bool have_context) override; |
25 gfx::Size GetSize() override; | 25 gfx::Size GetSize() override; |
26 unsigned GetInternalFormat() override; | 26 unsigned GetInternalFormat() override; |
27 bool BindTexImage(unsigned target) override; | 27 bool BindTexImage(unsigned target) override; |
28 void ReleaseTexImage(unsigned target) override {} | 28 void ReleaseTexImage(unsigned target) override {} |
29 bool CopyTexImage(unsigned target) override; | 29 bool CopyTexSubImage(unsigned target, |
| 30 const Point& offset, |
| 31 const Rect& rect) override; |
30 void WillUseTexImage() override {} | 32 void WillUseTexImage() override {} |
31 void DidUseTexImage() override {} | 33 void DidUseTexImage() override {} |
32 void WillModifyTexImage() override {} | 34 void WillModifyTexImage() override {} |
33 void DidModifyTexImage() override {} | 35 void DidModifyTexImage() override {} |
34 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 36 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
35 int z_order, | 37 int z_order, |
36 OverlayTransform transform, | 38 OverlayTransform transform, |
37 const Rect& bounds_rect, | 39 const Rect& bounds_rect, |
38 const RectF& crop_rect) override; | 40 const RectF& crop_rect) override; |
39 | 41 |
40 protected: | 42 protected: |
41 ~GLImageIOSurface() override; | 43 ~GLImageIOSurface() override; |
42 | 44 |
43 private: | 45 private: |
44 const gfx::Size size_; | 46 const gfx::Size size_; |
45 const unsigned internalformat_; | 47 const unsigned internalformat_; |
46 GpuMemoryBuffer::Format format_; | 48 GpuMemoryBuffer::Format format_; |
47 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; | 49 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; |
48 base::ThreadChecker thread_checker_; | 50 base::ThreadChecker thread_checker_; |
49 | 51 |
50 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface); | 52 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface); |
51 }; | 53 }; |
52 | 54 |
53 } // namespace gfx | 55 } // namespace gfx |
54 | 56 |
55 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_ | 57 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_ |
OLD | NEW |