Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: gm/gammatext.cpp

Issue 234833003: Revert of Rename kPMColor_SkColorType to kN32_SkColorType. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gm/bitmappremul.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 22 matching lines...) Expand all
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 SkImageInfo& info, const void* addr, 41 static CGContextRef makeCG(const SkImageInfo& info, const void* addr,
42 size_t rowBytes) { 42 size_t rowBytes) {
43 if (kN32_SkColorType != info.colorType() || NULL == addr) { 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((void*)addr, info.width(), info.heig ht(), 47 CGContextRef cg = CGBitmapContextCreate((void*)addr, info.width(), info.heig ht(),
48 8, 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
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 private: 201 private:
202 typedef GM INHERITED; 202 typedef GM INHERITED;
203 }; 203 };
204 204
205 ////////////////////////////////////////////////////////////////////////////// 205 //////////////////////////////////////////////////////////////////////////////
206 206
207 static GM* MyFactory(void*) { return new GammaTextGM; } 207 static GM* MyFactory(void*) { return new GammaTextGM; }
208 static GMRegistry reg(MyFactory); 208 static GMRegistry reg(MyFactory);
209 209
210 } 210 }
OLDNEW
« no previous file with comments | « gm/bitmappremul.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698