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

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

Issue 24075010: We don't flatten or unflatten SkPaintOptionsAndroid. Reproduce and fix. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: add == Created 7 years, 3 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
« no previous file with comments | « gyp/tests.gyp ('k') | include/core/SkPaintOptionsAndroid.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 /* 3 /*
4 * Copyright 2006 The Android Open Source Project 4 * Copyright 2006 The Android Open Source Project
5 * 5 *
6 * Use of this source code is governed by a BSD-style license that can be 6 * Use of this source code is governed by a BSD-style license that can be
7 * found in the LICENSE file. 7 * found in the LICENSE file.
8 */ 8 */
9 9
10 10
11 #ifndef SkPaint_DEFINED 11 #ifndef SkPaint_DEFINED
12 #define SkPaint_DEFINED 12 #define SkPaint_DEFINED
13 13
14 #include "SkColor.h" 14 #include "SkColor.h"
15 #include "SkDrawLooper.h" 15 #include "SkDrawLooper.h"
16 #include "SkMatrix.h" 16 #include "SkMatrix.h"
17 #include "SkXfermode.h" 17 #include "SkXfermode.h"
18 #ifdef SK_BUILD_FOR_ANDROID
reed1 2013/09/19 19:10:20 Why is this removed from the public header :(
mtklein 2013/09/19 19:14:24 Hrm, well, you're right, the header itself logical
mtklein 2013/09/19 19:28:01 Done.
19 #include "SkPaintOptionsAndroid.h" 18 #include "SkPaintOptionsAndroid.h"
20 #endif
21 19
22 class SkAnnotation; 20 class SkAnnotation;
23 class SkAutoGlyphCache; 21 class SkAutoGlyphCache;
24 class SkColorFilter; 22 class SkColorFilter;
25 class SkDescriptor; 23 class SkDescriptor;
26 struct SkDeviceProperties; 24 struct SkDeviceProperties;
27 class SkFlattenableReadBuffer; 25 class SkFlattenableReadBuffer;
28 class SkFlattenableWriteBuffer; 26 class SkFlattenableWriteBuffer;
29 struct SkGlyph; 27 struct SkGlyph;
30 struct SkRect; 28 struct SkRect;
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 #ifdef SK_BUILD_FOR_ANDROID 1077 #ifdef SK_BUILD_FOR_ANDROID
1080 SkPaintOptionsAndroid fPaintOptionsAndroid; 1078 SkPaintOptionsAndroid fPaintOptionsAndroid;
1081 1079
1082 // In order for the == operator to work properly this must be the last field 1080 // In order for the == operator to work properly this must be the last field
1083 // in the struct so that we can do a memcmp to this field's offset. 1081 // in the struct so that we can do a memcmp to this field's offset.
1084 uint32_t fGenerationID; 1082 uint32_t fGenerationID;
1085 #endif 1083 #endif
1086 }; 1084 };
1087 1085
1088 #endif 1086 #endif
OLDNEW
« no previous file with comments | « gyp/tests.gyp ('k') | include/core/SkPaintOptionsAndroid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698