diff options
author | mtklein <mtklein@chromium.org> | 2015-11-12 10:41:05 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-12 10:41:05 -0800 |
commit | 64593525debc63339e1bf9ddb8a0e998f7d976a3 (patch) | |
tree | fef4af677389ebf339a80d67294809b64041f798 /src | |
parent | 3aa5fce54e1d8f4a682eaf6446fa73df962b3778 (diff) |
Replace SkFunction with std::function
TBR=reed@google.com
No public API changes.
Review URL: https://codereview.chromium.org/1441753002
Diffstat (limited to 'src')
-rw-r--r-- | src/gpu/GrTextureParamsAdjuster.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gpu/GrTextureParamsAdjuster.h b/src/gpu/GrTextureParamsAdjuster.h index 0a3d529703..cad3920466 100644 --- a/src/gpu/GrTextureParamsAdjuster.h +++ b/src/gpu/GrTextureParamsAdjuster.h @@ -11,7 +11,6 @@ #include "GrTextureParams.h" #include "GrResourceKey.h" #include "GrTexture.h" -#include "SkFunction.h" #include "SkTLazy.h" class GrContext; @@ -106,7 +105,7 @@ public: * @param textureMatrix Matrix to apply to local coordinates to compute * texel coordinates. The post-transformed coordinates * should be in texels (relative to this->width() and - * this->height()) and not be normalized. + * this->height()) and not be normalized. * @param constraintRect Subrect of content area to be rendered. The * constraint rect is relative to the content area. * @param filterConstriant Indicates whether filtering is limited to @@ -145,7 +144,7 @@ private: typedef GrTextureProducer INHERITED; }; -/** +/** * Base class for sources that start out as something other than a texture (encoded image, * picture, ...). */ |