Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: ui/gl/gl_image_io_surface.h

Issue 1299713003: GLImage::OnMemoryDump Stubs + Some Impls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@images1.3
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/IOSurface.h> 8 #include <IOSurface/IOSurface.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 #if defined(__OBJC__) 15 #if defined(__OBJC__)
16 @class CALayer; 16 @class CALayer;
17 #else 17 #else
18 typedef void* CALayer; 18 typedef void* CALayer;
19 #endif 19 #endif
20 20
21 namespace gfx { 21 namespace gfx {
22 22
23 class GL_EXPORT GLImageIOSurface : public GLImage { 23 class GL_EXPORT GLImageIOSurface : public GLImage {
24 public: 24 public:
25 GLImageIOSurface(const gfx::Size& size, unsigned internalformat); 25 GLImageIOSurface(gfx::GenericSharedMemoryId io_surface_id,
26 const gfx::Size& size,
27 unsigned internalformat);
26 28
27 bool Initialize(IOSurfaceRef io_surface, BufferFormat format); 29 bool Initialize(IOSurfaceRef io_surface, BufferFormat format);
28 30
29 // Overridden from GLImage: 31 // Overridden from GLImage:
30 void Destroy(bool have_context) override; 32 void Destroy(bool have_context) override;
31 gfx::Size GetSize() override; 33 gfx::Size GetSize() override;
32 unsigned GetInternalFormat() override; 34 unsigned GetInternalFormat() override;
33 bool BindTexImage(unsigned target) override; 35 bool BindTexImage(unsigned target) override;
34 void ReleaseTexImage(unsigned target) override {} 36 void ReleaseTexImage(unsigned target) override {}
35 bool CopyTexSubImage(unsigned target, 37 bool CopyTexSubImage(unsigned target,
36 const Point& offset, 38 const Point& offset,
37 const Rect& rect) override; 39 const Rect& rect) override;
38 void WillUseTexImage() override {} 40 void WillUseTexImage() override {}
39 void DidUseTexImage() override {} 41 void DidUseTexImage() override {}
40 void WillModifyTexImage() override {} 42 void WillModifyTexImage() override {}
41 void DidModifyTexImage() override {} 43 void DidModifyTexImage() override {}
42 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, 44 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
43 int z_order, 45 int z_order,
44 OverlayTransform transform, 46 OverlayTransform transform,
45 const Rect& bounds_rect, 47 const Rect& bounds_rect,
46 const RectF& crop_rect) override; 48 const RectF& crop_rect) override;
47 49
48 base::ScopedCFTypeRef<IOSurfaceRef> io_surface(); 50 base::ScopedCFTypeRef<IOSurfaceRef> io_surface();
49 51
50 static void SetLayerForWidget(gfx::AcceleratedWidget widget, 52 static void SetLayerForWidget(gfx::AcceleratedWidget widget,
51 CALayer* layer); 53 CALayer* layer);
52 54
55 void OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd,
reveman 2015/08/18 08:32:52 nit: move below ScheduleOverlayPlane and make sure
ericrk 2015/08/18 09:00:47 Done.
56 uint64_t process_tracing_id,
57 const std::string& dump_name) override;
58
53 protected: 59 protected:
54 ~GLImageIOSurface() override; 60 ~GLImageIOSurface() override;
55 61
56 private: 62 private:
63 gfx::GenericSharedMemoryId io_surface_id_;
57 const gfx::Size size_; 64 const gfx::Size size_;
58 const unsigned internalformat_; 65 const unsigned internalformat_;
59 BufferFormat format_; 66 BufferFormat format_;
60 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; 67 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_;
61 base::ThreadChecker thread_checker_; 68 base::ThreadChecker thread_checker_;
62 69
63 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface); 70 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface);
64 }; 71 };
65 72
66 } // namespace gfx 73 } // namespace gfx
67 74
68 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_ 75 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698