| 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_SURFACE_TEXTURE_H_ | 5 #ifndef UI_GL_GL_IMAGE_SURFACE_TEXTURE_H_ |
| 6 #define UI_GL_GL_IMAGE_SURFACE_TEXTURE_H_ | 6 #define UI_GL_GL_IMAGE_SURFACE_TEXTURE_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/threading/thread_checker.h" | 9 #include "base/threading/thread_checker.h" |
| 10 #include "ui/gl/gl_bindings.h" | 10 #include "ui/gl/gl_bindings.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 unsigned GetInternalFormat() override; | 28 unsigned GetInternalFormat() override; |
| 29 bool BindTexImage(unsigned target) override; | 29 bool BindTexImage(unsigned target) override; |
| 30 void ReleaseTexImage(unsigned target) override {} | 30 void ReleaseTexImage(unsigned target) override {} |
| 31 bool CopyTexImage(unsigned target) override; | 31 bool CopyTexImage(unsigned target) override; |
| 32 bool CopyTexSubImage(unsigned target, | 32 bool CopyTexSubImage(unsigned target, |
| 33 const gfx::Point& offset, | 33 const gfx::Point& offset, |
| 34 const gfx::Rect& rect) override; | 34 const gfx::Rect& rect) override; |
| 35 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 35 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
| 36 int z_order, | 36 int z_order, |
| 37 gfx::OverlayTransform transform, | 37 gfx::OverlayTransform transform, |
| 38 gfx::BufferFormat storage_format, |
| 38 const gfx::Rect& bounds_rect, | 39 const gfx::Rect& bounds_rect, |
| 39 const gfx::RectF& crop_rect) override; | 40 const gfx::RectF& crop_rect, |
| 41 bool handle_scaling) override; |
| 40 void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, | 42 void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, |
| 41 uint64_t process_tracing_id, | 43 uint64_t process_tracing_id, |
| 42 const std::string& dump_name) override; | 44 const std::string& dump_name) override; |
| 43 | 45 |
| 44 protected: | 46 protected: |
| 45 ~GLImageSurfaceTexture() override; | 47 ~GLImageSurfaceTexture() override; |
| 46 | 48 |
| 47 private: | 49 private: |
| 48 scoped_refptr<gfx::SurfaceTexture> surface_texture_; | 50 scoped_refptr<gfx::SurfaceTexture> surface_texture_; |
| 49 const gfx::Size size_; | 51 const gfx::Size size_; |
| 50 GLint texture_id_; | 52 GLint texture_id_; |
| 51 base::ThreadChecker thread_checker_; | 53 base::ThreadChecker thread_checker_; |
| 52 | 54 |
| 53 DISALLOW_COPY_AND_ASSIGN(GLImageSurfaceTexture); | 55 DISALLOW_COPY_AND_ASSIGN(GLImageSurfaceTexture); |
| 54 }; | 56 }; |
| 55 | 57 |
| 56 } // namespace gl | 58 } // namespace gl |
| 57 | 59 |
| 58 #endif // UI_GL_GL_IMAGE_SURFACE_TEXTURE_H_ | 60 #endif // UI_GL_GL_IMAGE_SURFACE_TEXTURE_H_ |
| OLD | NEW |