| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "gm.h" | 8 #include "gm.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkPath.h" | 10 #include "SkPath.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 paint->setTypeface(tf)->unref(); | 31 paint->setTypeface(tf)->unref(); |
| 32 return true; | 32 return true; |
| 33 } | 33 } |
| 34 return false; | 34 return false; |
| 35 } | 35 } |
| 36 | 36 |
| 37 #ifdef SK_BUILD_FOR_MAC | 37 #ifdef SK_BUILD_FOR_MAC |
| 38 #import <ApplicationServices/ApplicationServices.h> | 38 #import <ApplicationServices/ApplicationServices.h> |
| 39 #define BITMAP_INFO_RGB (kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Ho
st) | 39 #define BITMAP_INFO_RGB (kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Ho
st) |
| 40 | 40 |
| 41 static CGContextRef makeCG(const SkBitmap& bm) { | 41 static CGContextRef makeCG(const SkImageInfo& info, const void* addr, |
| 42 if (SkBitmap::kARGB_8888_Config != bm.config() || | 42 size_t rowBytes) { |
| 43 NULL == bm.getPixels()) { | 43 if (kPMColor_SkColorType != info.colorType() || NULL == addr) { |
| 44 return NULL; | 44 return NULL; |
| 45 } | 45 } |
| 46 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); | 46 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); |
| 47 CGContextRef cg = CGBitmapContextCreate(bm.getPixels(), bm.width(), bm.heigh
t(), | 47 CGContextRef cg = CGBitmapContextCreate((void*)addr, info.width(), info.heig
ht(), |
| 48 8, bm.rowBytes(), space, BITMAP_INFO
_RGB); | 48 8, rowBytes, space, BITMAP_INFO_RGB)
; |
| 49 CFRelease(space); | 49 CFRelease(space); |
| 50 | 50 |
| 51 CGContextSetAllowsFontSubpixelQuantization(cg, false); | 51 CGContextSetAllowsFontSubpixelQuantization(cg, false); |
| 52 CGContextSetShouldSubpixelQuantizeFonts(cg, false); | 52 CGContextSetShouldSubpixelQuantizeFonts(cg, false); |
| 53 | 53 |
| 54 return cg; | 54 return cg; |
| 55 } | 55 } |
| 56 | 56 |
| 57 extern CTFontRef SkTypeface_GetCTFontRef(const SkTypeface* face); | 57 extern CTFontRef SkTypeface_GetCTFontRef(const SkTypeface* face); |
| 58 | 58 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 canvas->clear(SK_ColorRED); | 137 canvas->clear(SK_ColorRED); |
| 138 SkPaint paint; | 138 SkPaint paint; |
| 139 paint.setShader(s)->unref(); | 139 paint.setShader(s)->unref(); |
| 140 SkRect r = { 0, 0, SkIntToScalar(1024), SkIntToScalar(HEIGHT) }; | 140 SkRect r = { 0, 0, SkIntToScalar(1024), SkIntToScalar(HEIGHT) }; |
| 141 canvas->drawRect(r, paint); | 141 canvas->drawRect(r, paint); |
| 142 } | 142 } |
| 143 | 143 |
| 144 virtual void onDraw(SkCanvas* canvas) { | 144 virtual void onDraw(SkCanvas* canvas) { |
| 145 #ifdef SK_BUILD_FOR_MAC | 145 #ifdef SK_BUILD_FOR_MAC |
| 146 CGContextRef cg = makeCG(canvas->getDevice()->accessBitmap(false)); | 146 CGContextRef cg = 0; |
| 147 { |
| 148 SkImageInfo info; |
| 149 size_t rowBytes; |
| 150 const void* addr = canvas->peekPixels(&info, &rowBytes); |
| 151 if (addr) { |
| 152 cg = makeCG(info, addr, rowBytes); |
| 153 } |
| 154 } |
| 147 #endif | 155 #endif |
| 148 | 156 |
| 149 drawGrad(canvas); | 157 drawGrad(canvas); |
| 150 | 158 |
| 151 const SkColor fg[] = { | 159 const SkColor fg[] = { |
| 152 0xFFFFFFFF, | 160 0xFFFFFFFF, |
| 153 0xFFFFFF00, 0xFFFF00FF, 0xFF00FFFF, | 161 0xFFFFFF00, 0xFFFF00FF, 0xFF00FFFF, |
| 154 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, | 162 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, |
| 155 0xFF000000, | 163 0xFF000000, |
| 156 }; | 164 }; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 private: | 201 private: |
| 194 typedef GM INHERITED; | 202 typedef GM INHERITED; |
| 195 }; | 203 }; |
| 196 | 204 |
| 197 ////////////////////////////////////////////////////////////////////////////// | 205 ////////////////////////////////////////////////////////////////////////////// |
| 198 | 206 |
| 199 static GM* MyFactory(void*) { return new GammaTextGM; } | 207 static GM* MyFactory(void*) { return new GammaTextGM; } |
| 200 static GMRegistry reg(MyFactory); | 208 static GMRegistry reg(MyFactory); |
| 201 | 209 |
| 202 } | 210 } |
| OLD | NEW |