1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* Copyright 2011 Pierre Ossman <ossman@cendio.se> for Cendio AB
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <ApplicationServices/ApplicationServices.h>
#include <FL/Fl_Window.H>
#include <FL/x.H>
#include <rfb/LogWriter.h>
#include <rfb/Exception.h>
#include "OSXPixelBuffer.h"
using namespace rfb;
static rfb::LogWriter vlog("PlatformPixelBuffer");
PlatformPixelBuffer::PlatformPixelBuffer(int width, int height) :
ManagedPixelBuffer(rfb::PixelFormat(32, 24, false, true,
255, 255, 255, 16, 8, 0),
width, height),
image(NULL)
{
CGColorSpaceRef lut;
CGDataProviderRef provider;
lut = CGColorSpaceCreateDeviceRGB();
assert(lut);
provider = CGDataProviderCreateWithData(NULL, data, datasize, NULL);
assert(provider);
image = CGImageCreate(width, height, 8, 32, width*4, lut,
kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Little,
provider, NULL, false, kCGRenderingIntentDefault);
assert(image);
CGDataProviderRelease(provider);
CGColorSpaceRelease(lut);
}
PlatformPixelBuffer::~PlatformPixelBuffer()
{
CGImageRelease((CGImageRef)image);
}
void PlatformPixelBuffer::draw(int src_x, int src_y, int x, int y, int w, int h)
{
CGRect rect;
CGContextRef gc;
CGAffineTransform at;
gc = (CGContextRef)fl_gc;
CGContextSaveGState(gc);
// We have to use clipping to partially display an image
rect.origin.x = x - 0.5;
rect.origin.y = y - 0.5;
rect.size.width = w;
rect.size.height = h;
CGContextClipToRect(gc, rect);
// Oh the hackiness that is OS X image handling...
// The CGContextDrawImage() routine magically flips the images and offsets
// them by 0.5,0.5 in order to compensate for OS X unfamiliar coordinate
// system. But this breaks horribly when you set up the CTM to get the
// more familiar top-down system (which FLTK does), meaning we have to
// reset the CTM back to the identity matrix and calculate new origin
// coordinates.
at = CGContextGetCTM(gc);
CGContextScaleCTM(gc, 1, -1);
CGContextTranslateCTM(gc, -at.tx, -at.ty);
rect.origin.x = x - src_x;
rect.origin.y = Fl_Window::current()->h() - (y - src_y);
rect.size.width = width();
rect.size.height = -height(); // Negative height does _not_ flip the image
CGContextDrawImage(gc, rect, (CGImageRef)image);
CGContextRestoreGState(gc);
}
|