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
3 // found in the LICENSE file.
5 #ifndef UI_GL_GL_IMAGE_IO_SURFACE_H_
6 #define UI_GL_GL_IMAGE_IO_SURFACE_H_
8 #include <IOSurface/IOSurfaceAPI.h>
10 #include "base/mac/scoped_cftyperef.h"
11 #include "base/threading/thread_checker.h"
12 #include "ui/gfx/gpu_memory_buffer.h"
13 #include "ui/gl/gl_image.h"
17 class GL_EXPORT GLImageIOSurface
: public GLImage
{
19 GLImageIOSurface(const gfx::Size
& size
, unsigned internalformat
);
21 bool Initialize(IOSurfaceRef io_surface
, GpuMemoryBuffer::Format format
);
23 // Overridden from GLImage:
24 void Destroy(bool have_context
) override
;
25 gfx::Size
GetSize() override
;
26 unsigned GetInternalFormat() override
;
27 bool BindTexImage(unsigned target
) override
;
28 void ReleaseTexImage(unsigned target
) override
{}
29 bool CopyTexSubImage(unsigned target
,
31 const Rect
& rect
) override
;
32 void WillUseTexImage() override
{}
33 void DidUseTexImage() override
{}
34 void WillModifyTexImage() override
{}
35 void DidModifyTexImage() override
{}
36 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget
,
38 OverlayTransform transform
,
39 const Rect
& bounds_rect
,
40 const RectF
& crop_rect
) override
;
43 ~GLImageIOSurface() override
;
46 const gfx::Size size_
;
47 const unsigned internalformat_
;
48 GpuMemoryBuffer::Format format_
;
49 base::ScopedCFTypeRef
<IOSurfaceRef
> io_surface_
;
50 base::ThreadChecker thread_checker_
;
52 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface
);
57 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_