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

Side by Side Diff: gm/pictureshader.cpp

Issue 243173002: Staging for cleanup of SkPicture-related headers (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Add crucial newline at end of file 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 | Annotate | Revision Log
« no previous file with comments | « gm/pictureimagefilter.cpp ('k') | gyp/common_conditions.gypi » ('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 2014 Google Inc. 2 * Copyright 2014 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 9
10 #include "SkBitmap.h" 10 #include "SkBitmap.h"
11 #include "SkPaint.h" 11 #include "SkPaint.h"
12 #include "SkPicture.h" 12 #include "SkPicture.h"
13 #include "SkPictureRecorder.h"
13 #include "SkShader.h" 14 #include "SkShader.h"
14 15
15 namespace skiagm { 16 namespace skiagm {
16 17
17 static struct { 18 static struct {
18 SkShader::TileMode tmx; 19 SkShader::TileMode tmx;
19 SkShader::TileMode tmy; 20 SkShader::TileMode tmy;
20 } kTileConfigs[] = { 21 } kTileConfigs[] = {
21 { SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode }, 22 { SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode },
22 { SkShader::kRepeat_TileMode, SkShader::kClamp_TileMode }, 23 { SkShader::kRepeat_TileMode, SkShader::kClamp_TileMode },
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 SkScalar fSceneSize; 158 SkScalar fSceneSize;
158 159
159 SkAutoTUnref<SkShader> fPictureShaders[SK_ARRAY_COUNT(kTileConfigs)]; 160 SkAutoTUnref<SkShader> fPictureShaders[SK_ARRAY_COUNT(kTileConfigs)];
160 SkAutoTUnref<SkShader> fBitmapShaders[SK_ARRAY_COUNT(kTileConfigs)]; 161 SkAutoTUnref<SkShader> fBitmapShaders[SK_ARRAY_COUNT(kTileConfigs)];
161 162
162 typedef GM INHERITED; 163 typedef GM INHERITED;
163 }; 164 };
164 165
165 DEF_GM( return SkNEW_ARGS(PictureShaderGM, (50, 100)); ) 166 DEF_GM( return SkNEW_ARGS(PictureShaderGM, (50, 100)); )
166 } 167 }
OLDNEW
« no previous file with comments | « gm/pictureimagefilter.cpp ('k') | gyp/common_conditions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698