src/java.desktop/share/classes/sun/java2d/pipe/BufferedContext.java
author serb
Fri, 13 Sep 2019 17:35:12 -0700
changeset 58324 0aba35254e00
parent 52248 2e330da7cbf4
permissions -rw-r--r--
8229896: Delete an unused code in the BufferedContext Reviewed-by: prr, jdv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
     2
 * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1732
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1732
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1732
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1732
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1732
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.java2d.pipe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.AlphaComposite;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    29
import java.awt.Color;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Composite;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Paint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.geom.AffineTransform;
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    33
import java.lang.annotation.Native;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    34
import java.lang.ref.Reference;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    35
import java.lang.ref.WeakReference;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    36
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.java2d.InvalidPipeException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.java2d.SunGraphics2D;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.java2d.loops.XORComposite;
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    40
import sun.java2d.pipe.hw.AccelSurface;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    42
import static sun.java2d.pipe.BufferedOpCodes.BEGIN_SHAPE_CLIP;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    43
import static sun.java2d.pipe.BufferedOpCodes.END_SHAPE_CLIP;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    44
import static sun.java2d.pipe.BufferedOpCodes.RESET_CLIP;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    45
import static sun.java2d.pipe.BufferedOpCodes.RESET_COMPOSITE;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    46
import static sun.java2d.pipe.BufferedOpCodes.RESET_TRANSFORM;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    47
import static sun.java2d.pipe.BufferedOpCodes.SET_ALPHA_COMPOSITE;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    48
import static sun.java2d.pipe.BufferedOpCodes.SET_RECT_CLIP;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    49
import static sun.java2d.pipe.BufferedOpCodes.SET_SHAPE_CLIP_SPANS;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    50
import static sun.java2d.pipe.BufferedOpCodes.SET_SURFACES;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    51
import static sun.java2d.pipe.BufferedOpCodes.SET_TRANSFORM;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    52
import static sun.java2d.pipe.BufferedOpCodes.SET_XOR_COMPOSITE;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    53
import static sun.java2d.pipe.BufferedRenderPipe.BYTES_PER_SPAN;
12813
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 11897
diff changeset
    54
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Base context class for managing state in a single-threaded rendering
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * environment.  Each state-setting operation (e.g. SET_COLOR) is added to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * the provided RenderQueue, which will be processed at a later time by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * single thread.  Note that the RenderQueue lock must be acquired before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * calling the validate() method (or any other method in this class).  See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * the RenderQueue class comments for a sample usage scenario.
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    62
 *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    63
 * @see RenderQueue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 */
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    65
public abstract class BufferedContext {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * The following flags help the internals of validate() determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * the appropriate (meaning correct, or optimal) code path when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * setting up the current context.  The flags can be bitwise OR'd
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * together as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * Indicates that no flags are needed; take all default code paths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    77
    @Native public static final int NO_CONTEXT_FLAGS = (0 << 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Indicates that the source surface (or color value, if it is a simple
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * rendering operation) is opaque (has an alpha value of 1.0).  If this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * flag is present, it allows us to disable blending in certain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * situations in order to improve performance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    84
    @Native public static final int SRC_IS_OPAQUE    = (1 << 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Indicates that the operation uses an alpha mask, which may determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * the code path that is used when setting up the current paint state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    89
    @Native public static final int USE_MASK         = (1 << 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    91
    private final RenderQueue rq;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
    92
    private final RenderBuffer buf;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * This is a reference to the most recently validated BufferedContext.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * this value is null, it means that there is no current context.  It is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * provided here so that validate() only needs to do a quick reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * check to see if the BufferedContext passed to that method is the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * as the one we've cached here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    protected static BufferedContext currentContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   103
    private Reference<AccelSurface> validSrcDataRef = new WeakReference<>(null);
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   104
    private Reference<AccelSurface> validDstDataRef = new WeakReference<>(null);
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   105
    private Reference<Region> validClipRef = new WeakReference<>(null);
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   106
    private Reference<Composite> validCompRef = new WeakReference<>(null);
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   107
    private Reference<Paint> validPaintRef = new WeakReference<>(null);
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   108
    // renamed from isValidatedPaintAColor as part of a work around for 6764257
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   109
    private boolean         isValidatedPaintJustAColor;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   110
    private int             validatedRGB;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private int             validatedFlags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private boolean         xformInUse;
16840
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 12813
diff changeset
   113
    private AffineTransform transform;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    protected BufferedContext(RenderQueue rq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        this.rq = rq;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        this.buf = rq.getBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   121
     * Fetches the BufferedContextContext associated with the dst. surface
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   122
     * and validates the context using the given parameters.  Most rendering
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   123
     * operations will call this method first in order to set the necessary
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   124
     * state before issuing rendering commands.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   125
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   126
     * Note: must be called while the RenderQueue lock is held.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   127
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   128
     * It's assumed that the type of surfaces has been checked by the Renderer
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   129
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   130
     * @throws InvalidPipeException if either src or dest surface is not valid
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   131
     * or lost
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   132
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   133
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   134
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   135
    public static void validateContext(AccelSurface srcData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   136
                                       AccelSurface dstData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   137
                                       Region clip, Composite comp,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   138
                                       AffineTransform xform,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   139
                                       Paint paint, SunGraphics2D sg2d,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   140
                                       int flags)
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   141
    {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   142
        // assert rq.lock.isHeldByCurrentThread();
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   143
        BufferedContext context = dstData.getContext();
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   144
        context.validate(srcData, dstData,
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   145
                         clip, comp, xform, paint, sg2d, flags);
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   146
    }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   147
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   148
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   149
     * Fetches the BufferedContextassociated with the surface
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   150
     * and disables all context state settings.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   151
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   152
     * Note: must be called while the RenderQueue lock is held.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   153
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   154
     * It's assumed that the type of surfaces has been checked by the Renderer
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   155
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   156
     * @throws InvalidPipeException if the surface is not valid
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   157
     * or lost
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   158
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   159
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   160
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   161
    public static void validateContext(AccelSurface surface) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   162
        // assert rt.lock.isHeldByCurrentThread();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   163
        validateContext(surface, surface,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   164
                        null, null, null, null, null, NO_CONTEXT_FLAGS);
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   165
    }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   166
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   167
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * Validates the given parameters against the current state for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * context.  If this context is not current, it will be made current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * for the given source and destination surfaces, and the viewport will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * be updated.  Then each part of the context state (clip, composite,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * etc.) is checked against the previous value.  If the value has changed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * since the last call to validate(), it will be updated accordingly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * Note that the SunGraphics2D parameter is only used for the purposes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * of validating a (non-null) Paint parameter.  In all other cases it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * is safe to pass a null SunGraphics2D and it will be ignored.
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   178
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   179
     * Note: must be called while the RenderQueue lock is held.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   180
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   181
     * It's assumed that the type of surfaces has been checked by the Renderer
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   182
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   183
     * @throws InvalidPipeException if either src or dest surface is not valid
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   184
     * or lost
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   186
    private void validate(AccelSurface srcData, AccelSurface dstData,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                         Region clip, Composite comp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                         AffineTransform xform,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                         Paint paint, SunGraphics2D sg2d, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   193
        boolean updateClip = false;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   194
        boolean updatePaint = false;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   195
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   196
        if (!dstData.isValid() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   197
            dstData.isSurfaceLost() || srcData.isSurfaceLost())
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   198
        {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   199
            invalidateContext();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   200
            throw new InvalidPipeException("bounds changed or surface lost");
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   201
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   203
        if (paint instanceof Color) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   204
            // REMIND: not 30-bit friendly
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   205
            int newRGB = ((Color)paint).getRGB();
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   206
            if (isValidatedPaintJustAColor) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   207
                if (newRGB != validatedRGB) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   208
                    validatedRGB = newRGB;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   209
                    updatePaint = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   210
                }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   211
            } else {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   212
                validatedRGB = newRGB;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   213
                updatePaint = true;
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   214
                isValidatedPaintJustAColor = true;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   215
            }
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   216
        } else if (validPaintRef.get() != paint) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   217
            updatePaint = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   218
            // this should be set when we are switching from paint to color
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   219
            // in which case this condition will be true
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   220
            isValidatedPaintJustAColor = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   223
        final AccelSurface validatedSrcData = validSrcDataRef.get();
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   224
        final AccelSurface validatedDstData = validDstDataRef.get();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        if ((currentContext != this) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            (srcData != validatedSrcData) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            (dstData != validatedDstData))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            if (dstData != validatedDstData) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                // the clip is dependent on the destination surface, so we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                // need to update it if we have a new destination surface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                updateClip = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            if (paint == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                // make sure we update the color state (otherwise, it might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                // not be updated if this is the first time the context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                // is being validated)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                updatePaint = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            // update the current source and destination surfaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            setSurfaces(srcData, dstData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            currentContext = this;
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   246
            validSrcDataRef = new WeakReference<>(srcData);
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   247
            validDstDataRef = new WeakReference<>(dstData);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        // validate clip
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   251
        final Region validatedClip = validClipRef.get();
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   252
        if ((clip != validatedClip) || updateClip) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            if (clip != null) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   254
                if (updateClip ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   255
                    validatedClip == null ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   256
                    !(validatedClip.isRectangular() && clip.isRectangular()) ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   257
                    ((clip.getLoX() != validatedClip.getLoX() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   258
                      clip.getLoY() != validatedClip.getLoY() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   259
                      clip.getHiX() != validatedClip.getHiX() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   260
                      clip.getHiY() != validatedClip.getHiY())))
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   261
                {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   262
                    setClip(clip);
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   263
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                resetClip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            }
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   267
            validClipRef = new WeakReference<>(clip);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        // validate composite (note that a change in the context flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        // may require us to update the composite state, even if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        // composite has not changed)
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   273
        if ((comp != validCompRef.get()) || (flags != validatedFlags)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            if (comp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                setComposite(comp, flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                resetComposite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            // the paint state is dependent on the composite state, so make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            // sure we update the color below
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            updatePaint = true;
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   282
            validCompRef = new WeakReference<>(comp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            validatedFlags = flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        // validate transform
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   287
        boolean txChanged = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        if (xform == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            if (xformInUse) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                resetTransform();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                xformInUse = false;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   292
                txChanged = true;
16840
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 12813
diff changeset
   293
            } else if (sg2d != null && !sg2d.transform.equals(transform)) {
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 12813
diff changeset
   294
                txChanged = true;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   295
            }
16840
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 12813
diff changeset
   296
            if (sg2d != null && txChanged) {
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 12813
diff changeset
   297
                transform = new AffineTransform(sg2d.transform);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            setTransform(xform);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            xformInUse = true;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   302
            txChanged = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   303
        }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   304
        // non-Color paints may require paint revalidation
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   305
        if (!isValidatedPaintJustAColor && txChanged) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   306
            updatePaint = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        // validate paint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        if (updatePaint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            if (paint != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                BufferedPaints.setPaint(rq, sg2d, paint, flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                BufferedPaints.resetPaint(rq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            }
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   316
            validPaintRef = new WeakReference<>(paint);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        // mark dstData dirty
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   320
        // REMIND: is this really needed now? we do it in SunGraphics2D..
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        dstData.markDirty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   324
    private void setSurfaces(AccelSurface srcData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   325
                             AccelSurface dstData)
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   326
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        rq.ensureCapacityAndAlignment(20, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        buf.putInt(SET_SURFACES);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        buf.putLong(srcData.getNativeOps());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        buf.putLong(dstData.getNativeOps());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    private void resetClip() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        buf.putInt(RESET_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    private void setClip(Region clip) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        if (clip.isRectangular()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            rq.ensureCapacity(20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
            buf.putInt(SET_RECT_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            buf.putInt(clip.getLoX()).putInt(clip.getLoY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            buf.putInt(clip.getHiX()).putInt(clip.getHiY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            rq.ensureCapacity(28); // so that we have room for at least a span
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            buf.putInt(BEGIN_SHAPE_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            buf.putInt(SET_SHAPE_CLIP_SPANS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            // include a placeholder for the span count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            int countIndex = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            buf.putInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            int spanCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            int remainingSpans = buf.remaining() / BYTES_PER_SPAN;
52248
2e330da7cbf4 8211300: Convert C-style array declarations in JDK client code
tvaleev
parents: 47216
diff changeset
   356
            int[] span = new int[4];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            SpanIterator si = clip.getSpanIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            while (si.nextSpan(span)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                if (remainingSpans == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                    buf.putInt(countIndex, spanCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                    rq.flushNow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                    buf.putInt(SET_SHAPE_CLIP_SPANS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                    countIndex = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                    buf.putInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                    spanCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                    remainingSpans = buf.remaining() / BYTES_PER_SPAN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                buf.putInt(span[0]); // x1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                buf.putInt(span[1]); // y1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                buf.putInt(span[2]); // x2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                buf.putInt(span[3]); // y2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                spanCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                remainingSpans--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            buf.putInt(countIndex, spanCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            buf.putInt(END_SHAPE_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    private void resetComposite() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        buf.putInt(RESET_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    private void setComposite(Composite comp, int flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        if (comp instanceof AlphaComposite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            AlphaComposite ac = (AlphaComposite)comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            rq.ensureCapacity(16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            buf.putInt(SET_ALPHA_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            buf.putInt(ac.getRule());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            buf.putFloat(ac.getAlpha());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            buf.putInt(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        } else if (comp instanceof XORComposite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            int xorPixel = ((XORComposite)comp).getXorPixel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            rq.ensureCapacity(8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            buf.putInt(SET_XOR_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            buf.putInt(xorPixel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            throw new InternalError("not yet implemented");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    private void resetTransform() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        buf.putInt(RESET_TRANSFORM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    private void setTransform(AffineTransform xform) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        rq.ensureCapacityAndAlignment(52, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        buf.putInt(SET_TRANSFORM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        buf.putDouble(xform.getScaleX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        buf.putDouble(xform.getShearY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        buf.putDouble(xform.getShearX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        buf.putDouble(xform.getScaleY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        buf.putDouble(xform.getTranslateX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        buf.putDouble(xform.getTranslateY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    }
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   423
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   424
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   425
     * Resets this context's surfaces and all attributes.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   426
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   427
     * Note: must be called while the RenderQueue lock is held.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   428
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   429
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   430
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   431
     */
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   432
    public final void invalidateContext() {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   433
        resetTransform();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   434
        resetComposite();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   435
        resetClip();
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   436
        BufferedPaints.resetPaint(rq);
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   437
        validSrcDataRef.clear();
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   438
        validDstDataRef.clear();
39007
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   439
        validCompRef.clear();
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   440
        validClipRef.clear();
576736088436 8028486: java/awt/Window/WindowsLeak/WindowsLeak.java fails
serb
parents: 28059
diff changeset
   441
        validPaintRef.clear();
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   442
        isValidatedPaintJustAColor = false;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   443
        xformInUse = false;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   444
    }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   445
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   446
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   447
     * Returns a singleton {@code RenderQueue} object used by the rendering
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   448
     * pipeline.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   449
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   450
     * @return a render queue
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   451
     * @see RenderQueue
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   452
     */
58324
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   453
    public final RenderQueue getRenderQueue() {
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   454
        return rq;
0aba35254e00 8229896: Delete an unused code in the BufferedContext
serb
parents: 52248
diff changeset
   455
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
}