aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-05 20:29:59 +0000
committerGravatar senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-05 20:29:59 +0000
commit97333f2da9a63f8a9918fe775b34839f74e41414 (patch)
tree427cb5e8223030b3b87749de4d76298318cf173c
parent9772a52f0d9e540d2a360dde2aab0ad41c90b1d8 (diff)
Remove warning comment from SkImageFilter.
R=reed@google.com Review URL: https://codereview.chromium.org/22236002 git-svn-id: http://skia.googlecode.com/svn/trunk@10546 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--include/core/SkImageFilter.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/core/SkImageFilter.h b/include/core/SkImageFilter.h
index 78eb9aed2a..01b3e0bca8 100644
--- a/include/core/SkImageFilter.h
+++ b/include/core/SkImageFilter.h
@@ -21,25 +21,11 @@ class GrEffectRef;
class GrTexture;
/**
- * Experimental.
- *
* Base class for image filters. If one is installed in the paint, then
* all drawing occurs as usual, but it is as if the drawing happened into an
* offscreen (before the xfermode is applied). This offscreen bitmap will
* then be handed to the imagefilter, who in turn creates a new bitmap which
* is what will finally be drawn to the device (using the original xfermode).
- *
- * THIS SIGNATURE IS TEMPORARY
- *
- * There are several weaknesses in this function signature:
- * 1. Does not expose the destination/target device, so filters that can draw
- * directly to it are unable to take advantage of that optimization.
- * 2. Does not expose a way to create a "compabitible" image (i.e. gpu -> gpu)
- * 3. As with #1, the filter is unable to "read" the dest (which would be slow)
- *
- * Therefore, we should not create any real dependencies on this API yet -- it
- * is being checked in as a check-point so we can explore these and other
- * considerations.
*/
class SK_API SkImageFilter : public SkFlattenable {
public: