sun.java2d.SunCompositeContext Java Examples

The following examples show how to use sun.java2d.SunCompositeContext. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XORComposite.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #2
Source File: XORComposite.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #3
Source File: XORComposite.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #4
Source File: XORComposite.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #5
Source File: XORComposite.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #6
Source File: XORComposite.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #7
Source File: XORComposite.java    From Bytecoder with Apache License 2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #8
Source File: XORComposite.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #9
Source File: XORComposite.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #10
Source File: XORComposite.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #11
Source File: XORComposite.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #12
Source File: XORComposite.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #13
Source File: XORComposite.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #14
Source File: XORComposite.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #15
Source File: AlphaComposite.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #16
Source File: AlphaComposite.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #17
Source File: AlphaComposite.java    From jdk8u_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #18
Source File: AlphaComposite.java    From jdk-1.7-annotated with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #19
Source File: AlphaComposite.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #20
Source File: AlphaComposite.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #21
Source File: AlphaComposite.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #22
Source File: AlphaComposite.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #23
Source File: AlphaComposite.java    From Java8CN with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #24
Source File: AlphaComposite.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #25
Source File: AlphaComposite.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the {@code ColorModel} of the destination
 * @return the {@code CompositeContext} object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #26
Source File: AlphaComposite.java    From Bytecoder with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the {@code ColorModel} of the destination
 * @return the {@code CompositeContext} object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #27
Source File: AlphaComposite.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #28
Source File: AlphaComposite.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #29
Source File: AlphaComposite.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}
 
Example #30
Source File: AlphaComposite.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Creates a context for the compositing operation.
 * The context contains state that is used in performing
 * the compositing operation.
 * @param srcColorModel  the {@link ColorModel} of the source
 * @param dstColorModel  the <code>ColorModel</code> of the destination
 * @return the <code>CompositeContext</code> object to be used to perform
 * compositing operations.
 */
public CompositeContext createContext(ColorModel srcColorModel,
                                      ColorModel dstColorModel,
                                      RenderingHints hints) {
    return new SunCompositeContext(this, srcColorModel, dstColorModel);
}