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 #include "ui/gl/gl_image_io_surface.h"
7 #include "ui/gl/gl_bindings.h"
8 #include "ui/gl/gl_context.h"
10 // Note that this must be included after gl_bindings.h to avoid conflicts.
11 #include <OpenGL/CGLIOSurface.h>
15 GLImageIOSurface::GLImageIOSurface(const gfx::Size
& size
) : size_(size
) {
18 GLImageIOSurface::~GLImageIOSurface() {
22 bool GLImageIOSurface::Initialize(IOSurfaceRef io_surface
) {
24 io_surface_
.reset(io_surface
);
28 void GLImageIOSurface::Destroy(bool have_context
) {
32 gfx::Size
GLImageIOSurface::GetSize() { return size_
; }
34 bool GLImageIOSurface::BindTexImage(unsigned target
) {
35 if (target
!= GL_TEXTURE_RECTANGLE_ARB
) {
36 // This might be supported in the future. For now, perform strict
37 // validation so we know what's going on.
38 LOG(ERROR
) << "IOSurface requires TEXTURE_RECTANGLE_ARB target";
42 CGLContextObj cgl_context
=
43 static_cast<CGLContextObj
>(GLContext::GetCurrent()->GetHandle());
46 CGLError cgl_error
= CGLTexImageIOSurface2D(cgl_context
,
52 GL_UNSIGNED_INT_8_8_8_8_REV
,
55 if (cgl_error
!= kCGLNoError
) {
56 LOG(ERROR
) << "Error in CGLTexImageIOSurface2D";
63 bool GLImageIOSurface::CopyTexImage(unsigned target
) {
67 bool GLImageIOSurface::ScheduleOverlayPlane(gfx::AcceleratedWidget widget
,
69 OverlayTransform transform
,
70 const Rect
& bounds_rect
,
71 const RectF
& crop_rect
) {