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

Side by Side Diff: include/utils/SkDebugUtils.h

Issue 1488813002: CMake, include/: changes to make fiddle 2.0 better (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: whitespace change for reed@ Created 5 years 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 | « include/ports/SkTypeface_win.h ('k') | include/utils/mac/SkCGUtils.h » ('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 /* 2 /*
3 * Copyright 2013 Google, Inc. 3 * Copyright 2013 Google, Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkDebugUtils_DEFINED 10 #ifndef SkDebugUtils_DEFINED
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 inline void SkDebugDumpMathematica<int>( const int val ) { 74 inline void SkDebugDumpMathematica<int>( const int val ) {
75 SkDebugf("%d", val); 75 SkDebugf("%d", val);
76 } 76 }
77 77
78 template<> 78 template<>
79 inline void SkDebugDumpMathematica<size_t>( const size_t val ) { 79 inline void SkDebugDumpMathematica<size_t>( const size_t val ) {
80 SkDebugf("%u", val); 80 SkDebugf("%u", val);
81 } 81 }
82 82
83 template<> 83 template<>
84 void SkDebugDumpMathematica<const char *>( const char * val ) { 84 inline void SkDebugDumpMathematica<const char *>( const char * val ) {
85 SkDebugf("%s", val); 85 SkDebugf("%s", val);
86 } 86 }
87 87
88 template<> 88 template<>
89 inline void SkDebugDumpMathematica<float>( float val ) { 89 inline void SkDebugDumpMathematica<float>( float val ) {
90 SkDebugf("%f", val); 90 SkDebugf("%f", val);
91 } 91 }
92 92
93 93
94 #endif 94 #endif
OLDNEW
« no previous file with comments | « include/ports/SkTypeface_win.h ('k') | include/utils/mac/SkCGUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698