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

Unified Diff: include/gpu/GrTextureProvider.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/core/SkImageFilter.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrTextureProvider.h
diff --git a/include/gpu/GrTextureProvider.h b/include/gpu/GrTextureProvider.h
index 5635583d80fef393a746ae75f32edc0d2a3c8025..fb3a550cd41291c7d65b2d217074bcafecf27e1b 100644
--- a/include/gpu/GrTextureProvider.h
+++ b/include/gpu/GrTextureProvider.h
@@ -70,31 +70,6 @@ public:
*/
GrTexture* createApproxTexture(const GrSurfaceDesc&);
- enum SizeConstraint {
- kExact_SizeConstraint,
- kApprox_SizeConstraint,
- };
-
- GrTexture* createTexture(const GrSurfaceDesc& desc, SizeConstraint constraint) {
- switch (constraint) {
- case kExact_SizeConstraint:
- return this->createTexture(desc, true);
- case kApprox_SizeConstraint:
- return this->createApproxTexture(desc);
- }
- sk_throw();
- return nullptr;
- }
-
- static SizeConstraint FromImageFilter(SkImageFilter::SizeConstraint constraint) {
- if (SkImageFilter::kExact_SizeConstraint == constraint) {
- return kExact_SizeConstraint;
- } else {
- SkASSERT(SkImageFilter::kApprox_SizeConstraint == constraint);
- return kApprox_SizeConstraint;
- }
- }
-
/** Legacy function that no longer should be used. */
enum ScratchTexMatch {
kExact_ScratchTexMatch,
« no previous file with comments | « include/core/SkImageFilter.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698