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

Side by Side Diff: include/core/SkBlitRow.h

Issue 17335008: remove dst/rendertarget support for kARGB_4444_Config (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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 #ifndef SkBlitRow_DEFINED 8 #ifndef SkBlitRow_DEFINED
9 #define SkBlitRow_DEFINED 9 #define SkBlitRow_DEFINED
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 static ColorRectProc ColorRectProcFactory(); 85 static ColorRectProc ColorRectProcFactory();
86 86
87 /** These static functions are called by the Factory and Factory32 87 /** These static functions are called by the Factory and Factory32
88 functions, and should return either NULL, or a 88 functions, and should return either NULL, or a
89 platform-specific function-ptr to be used in place of the 89 platform-specific function-ptr to be used in place of the
90 system default. 90 system default.
91 */ 91 */
92 92
93 static Proc32 PlatformProcs32(unsigned flags); 93 static Proc32 PlatformProcs32(unsigned flags);
94 static Proc PlatformProcs565(unsigned flags); 94 static Proc PlatformProcs565(unsigned flags);
95 static Proc PlatformProcs4444(unsigned flags);
96 static ColorProc PlatformColorProc(); 95 static ColorProc PlatformColorProc();
97 96
98 private: 97 private:
99 enum { 98 enum {
100 kFlags16_Mask = 7, 99 kFlags16_Mask = 7,
101 kFlags32_Mask = 3 100 kFlags32_Mask = 3
102 }; 101 };
103 }; 102 };
104 103
105 #endif 104 #endif
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | include/core/SkXfermode.h » ('j') | src/core/SkCanvas.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698