X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scenegraph%2Fsrc%2Forg%2Fsimantics%2Fscenegraph%2Fg2d%2FG2DRenderingHints.java;h=a01654ce2a6a4bb7e5ed4f5c04845eb525662fcd;hb=4d3f88eb0edb95b8bc7dedb136f0048ff3918506;hp=992213c4595f8dfa5f375af72b00750e00ce71bf;hpb=ceff53434e48f94c5d84ce12f3b1e21cabda457b;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/G2DRenderingHints.java b/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/G2DRenderingHints.java index 992213c45..a01654ce2 100644 --- a/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/G2DRenderingHints.java +++ b/bundles/org.simantics.scenegraph/src/org/simantics/scenegraph/g2d/G2DRenderingHints.java @@ -16,6 +16,8 @@ import java.awt.geom.AffineTransform; import java.awt.geom.Rectangle2D; import java.util.Map; +import org.simantics.scenegraph.g2d.color.ColorFilter; + /** * @author Tuukka Lehtonen * See {@link G2DPDFRenderingHints} @@ -121,4 +123,15 @@ public final class G2DRenderingHints { } }; + /* + * A rendering hint for storing the active ColorFilter which can be used e.g. + * for coloring BufferedImages. + */ + public static final Key KEY_COLOR_FILTER = new Key(2007) { + @Override + public boolean isCompatibleValue(Object val) { + return val instanceof ColorFilter || val == null; + } + }; + } \ No newline at end of file