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
3 // found in the LICENSE file.
5 #include "content/common/gpu/image_transport_surface_iosurface_mac.h"
7 #include "content/common/gpu/gpu_messages.h"
8 #include "content/common/gpu/surface_handle_types_mac.h"
13 // IOSurface dimensions will be rounded up to a multiple of this value in order
14 // to reduce memory thrashing during resize. This must be a power of 2.
15 const uint32 kIOSurfaceDimensionRoundup
= 64;
17 int RoundUpSurfaceDimension(int number
) {
19 // Cast into unsigned space for portable bitwise ops.
20 uint32 unsigned_number
= static_cast<uint32
>(number
);
21 uint32 roundup_sub_1
= kIOSurfaceDimensionRoundup
- 1;
22 unsigned_number
= (unsigned_number
+ roundup_sub_1
) & ~roundup_sub_1
;
23 return static_cast<int>(unsigned_number
);
26 void AddBooleanValue(CFMutableDictionaryRef dictionary
,
27 const CFStringRef key
,
29 CFDictionaryAddValue(dictionary
, key
,
30 (value
? kCFBooleanTrue
: kCFBooleanFalse
));
33 void AddIntegerValue(CFMutableDictionaryRef dictionary
,
34 const CFStringRef key
,
36 base::ScopedCFTypeRef
<CFNumberRef
> number(
37 CFNumberCreate(NULL
, kCFNumberSInt32Type
, &value
));
38 CFDictionaryAddValue(dictionary
, key
, number
.get());
43 IOSurfaceStorageProvider::IOSurfaceStorageProvider() {}
45 IOSurfaceStorageProvider::~IOSurfaceStorageProvider() {
49 gfx::Size
IOSurfaceStorageProvider::GetRoundedSize(gfx::Size size
) {
50 return gfx::Size(RoundUpSurfaceDimension(size
.width()),
51 RoundUpSurfaceDimension(size
.height()));
54 bool IOSurfaceStorageProvider::AllocateColorBufferStorage(
55 CGLContextObj context
, GLuint texture
,
56 gfx::Size pixel_size
, float scale_factor
) {
57 // Allocate a new IOSurface, which is the GPU resource that can be
58 // shared across processes.
59 base::ScopedCFTypeRef
<CFMutableDictionaryRef
> properties
;
60 properties
.reset(CFDictionaryCreateMutable(kCFAllocatorDefault
,
62 &kCFTypeDictionaryKeyCallBacks
,
63 &kCFTypeDictionaryValueCallBacks
));
64 AddIntegerValue(properties
,
67 AddIntegerValue(properties
,
70 AddIntegerValue(properties
,
71 kIOSurfaceBytesPerElement
, 4);
72 AddBooleanValue(properties
,
73 kIOSurfaceIsGlobal
, true);
74 // I believe we should be able to unreference the IOSurfaces without
75 // synchronizing with the browser process because they are
76 // ultimately reference counted by the operating system.
77 io_surface_
.reset(IOSurfaceCreate(properties
));
78 io_surface_id_
= IOSurfaceGetID(io_surface_
);
80 // Don't think we need to identify a plane.
82 CGLError cglerror
= CGLTexImageIOSurface2D(
84 GL_TEXTURE_RECTANGLE_ARB
,
89 GL_UNSIGNED_INT_8_8_8_8_REV
,
92 if (cglerror
!= kCGLNoError
) {
93 DLOG(ERROR
) << "CGLTexImageIOSurface2D failed with CGL error: " << cglerror
;
101 void IOSurfaceStorageProvider::FreeColorBufferStorage() {
106 uint64
IOSurfaceStorageProvider::GetSurfaceHandle() const {
107 return SurfaceHandleFromIOSurfaceID(io_surface_id_
);
110 void IOSurfaceStorageProvider::WillSwapBuffers() {
113 } // namespace content