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

Side by Side Diff: src/effects/SkGpuBlurUtils.h

Issue 1571033002: remove imagefilter::sizeconstraint (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 11 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 | « src/effects/SkDisplacementMapEffect.cpp ('k') | src/effects/SkGpuBlurUtils.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 2013 Google Inc. 2 * Copyright 2013 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 SkGpuBlurUtils_DEFINED 8 #ifndef SkGpuBlurUtils_DEFINED
9 #define SkGpuBlurUtils_DEFINED 9 #define SkGpuBlurUtils_DEFINED
10 10
(...skipping 22 matching lines...) Expand all
33 * @param sigmaY The blur's standard deviation in Y. 33 * @param sigmaY The blur's standard deviation in Y.
34 * @return the blurred texture, which may be srcTexture reffed, or a 34 * @return the blurred texture, which may be srcTexture reffed, or a
35 * new texture. It is the caller's responsibility to unref this texture. 35 * new texture. It is the caller's responsibility to unref this texture.
36 */ 36 */
37 GrTexture* GaussianBlur(GrContext* context, 37 GrTexture* GaussianBlur(GrContext* context,
38 GrTexture* srcTexture, 38 GrTexture* srcTexture,
39 bool canClobberSrc, 39 bool canClobberSrc,
40 const SkRect& dstBounds, 40 const SkRect& dstBounds,
41 const SkRect* srcBounds, 41 const SkRect* srcBounds,
42 float sigmaX, 42 float sigmaX,
43 float sigmaY, 43 float sigmaY);
44 GrTextureProvider::SizeConstraint);
45 #endif 44 #endif
46 45
47 }; 46 };
48 47
49 #endif 48 #endif
OLDNEW
« no previous file with comments | « src/effects/SkDisplacementMapEffect.cpp ('k') | src/effects/SkGpuBlurUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698