jdk/src/java.desktop/macosx/classes/sun/java2d/OSXSurfaceData.java
changeset 32865 f9cb6e427f9e
parent 32481 6f01579f7118
child 36874 09abfda883d2
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    41 
    41 
    42 /*
    42 /*
    43  * This is the SurfaceData for a CGContextRef.
    43  * This is the SurfaceData for a CGContextRef.
    44  */
    44  */
    45 public abstract class OSXSurfaceData extends BufImgSurfaceData {
    45 public abstract class OSXSurfaceData extends BufImgSurfaceData {
    46     final static float UPPER_BND = Float.MAX_VALUE / 2.0f;
    46     static final float UPPER_BND = Float.MAX_VALUE / 2.0f;
    47     final static float LOWER_BND = -UPPER_BND;
    47     static final float LOWER_BND = -UPPER_BND;
    48 
    48 
    49     protected static CRenderer sQuartzPipe = null;
    49     protected static CRenderer sQuartzPipe = null;
    50     protected static CTextPipe sCocoaTextPipe = null;
    50     protected static CTextPipe sCocoaTextPipe = null;
    51     protected static CompositeCRenderer sQuartzCompositePipe = null;
    51     protected static CompositeCRenderer sQuartzCompositePipe = null;
    52 
    52