| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | |
| 3 * | |
| 4 * This library is free software; you can redistribute it and/or | |
| 5 * modify it under the terms of the GNU Library General Public | |
| 6 * License as published by the Free Software Foundation; either | |
| 7 * version 2 of the License, or (at your option) any later version. | |
| 8 * | |
| 9 * This library is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 * Library General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU Library General Public License | |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
| 17 * Boston, MA 02110-1301, USA. | |
| 18 */ | |
| 19 | |
| 20 #include "config.h" | |
| 21 #include "core/platform/mac/LocalCurrentGraphicsContext.h" | |
| 22 | |
| 23 #include <AppKit/NSGraphicsContext.h> | |
| 24 #include "core/platform/graphics/GraphicsContext.h" | |
| 25 #include "platform_canvas.h" | |
| 26 | |
| 27 namespace WebCore { | |
| 28 | |
| 29 LocalCurrentGraphicsContext::LocalCurrentGraphicsContext(GraphicsContext* graphi
csContext) | |
| 30 : m_didSetGraphicsContext(false) | |
| 31 , m_skiaBitLocker(graphicsContext->canvas()) | |
| 32 { | |
| 33 m_savedGraphicsContext = graphicsContext; | |
| 34 graphicsContext->save(); | |
| 35 | |
| 36 CGContextRef cgContext = this->cgContext(); | |
| 37 if (cgContext == [[NSGraphicsContext currentContext] graphicsPort]) { | |
| 38 m_savedNSGraphicsContext = 0; | |
| 39 return; | |
| 40 } | |
| 41 | |
| 42 m_savedNSGraphicsContext = [[NSGraphicsContext currentContext] retain]; | |
| 43 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphi
csPort:cgContext flipped:YES]; | |
| 44 [NSGraphicsContext setCurrentContext:newContext]; | |
| 45 m_didSetGraphicsContext = true; | |
| 46 } | |
| 47 | |
| 48 LocalCurrentGraphicsContext::~LocalCurrentGraphicsContext() | |
| 49 { | |
| 50 if (m_didSetGraphicsContext) { | |
| 51 [NSGraphicsContext setCurrentContext:m_savedNSGraphicsContext]; | |
| 52 [m_savedNSGraphicsContext release]; | |
| 53 } | |
| 54 | |
| 55 m_savedGraphicsContext->restore(); | |
| 56 } | |
| 57 | |
| 58 CGContextRef LocalCurrentGraphicsContext::cgContext() | |
| 59 { | |
| 60 // This synchronizes the CGContext to reflect the current SkCanvas state. | |
| 61 // The implementation may not return the same CGContext each time. | |
| 62 CGContextRef cgContext = m_skiaBitLocker.cgContext(); | |
| 63 | |
| 64 return cgContext; | |
| 65 } | |
| 66 | |
| 67 ContextContainer::ContextContainer(GraphicsContext* graphicsContext) | |
| 68 : m_skiaBitLocker(graphicsContext->canvas()) | |
| 69 { | |
| 70 } | |
| 71 | |
| 72 } | |
| OLD | NEW |