aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/SkGr.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-10-20 07:58:01 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-10-20 07:58:01 -0700
commit045802dbb7202b52f5fd2758d725f39c156a6165 (patch)
tree49cdef8c087b3c674928e2428a4761fb15f777b4 /include/gpu/SkGr.h
parent4beb5c117b355599e2fd26b8b3d19de99512cb69 (diff)
Rewrite GrTextureMaker to disentangle bitmap case from base class and give GPU object a say in what copying needs to be done.
Diffstat (limited to 'include/gpu/SkGr.h')
-rw-r--r--include/gpu/SkGr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/gpu/SkGr.h b/include/gpu/SkGr.h
index 591d3d88a4..17625c4e4e 100644
--- a/include/gpu/SkGr.h
+++ b/include/gpu/SkGr.h
@@ -65,9 +65,11 @@ static inline GrColor SkPMColorToGrColor(SkPMColor c) {
}
////////////////////////////////////////////////////////////////////////////////
-
+/** Returns a texture representing the bitmap that is compatible with the GrTextureParams. The
+ texture is inserted into the cache (unless the bitmap is marked volatile) and can be
+ retrieved again via this function. */
GrTexture* GrRefCachedBitmapTexture(GrContext*, const SkBitmap&, const GrTextureParams&);
-
+
// TODO: Move SkImageInfo2GrPixelConfig to SkGrPriv.h (requires cleanup to SkWindow its subclasses).
GrPixelConfig SkImageInfo2GrPixelConfig(SkColorType, SkAlphaType, SkColorProfileType);