jdk/src/share/classes/sun/java2d/pipe/BufferedContext.java
author dxu
Thu, 04 Apr 2013 15:39:17 -0700
changeset 16734 da1901d79073
parent 12813 c10ab96dcf41
child 16843 21ec7ce3e580
permissions -rw-r--r--
8000406: change files using @GenerateNativeHeader to use @Native Summary: Use @Native annotation to mark constants interested by native codes Reviewed-by: alanb, anthony, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
     2
 * Copyright (c) 2005, 2013, 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;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    33
import sun.java2d.pipe.hw.AccelSurface;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.java2d.InvalidPipeException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.java2d.SunGraphics2D;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.java2d.loops.XORComposite;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import static sun.java2d.pipe.BufferedOpCodes.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import static sun.java2d.pipe.BufferedRenderPipe.BYTES_PER_SPAN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    40
import java.lang.annotation.Native;
12813
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 11897
diff changeset
    41
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Base context class for managing state in a single-threaded rendering
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * environment.  Each state-setting operation (e.g. SET_COLOR) is added to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * the provided RenderQueue, which will be processed at a later time by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * single thread.  Note that the RenderQueue lock must be acquired before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * calling the validate() method (or any other method in this class).  See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * 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
    49
 *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    50
 * @see RenderQueue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    52
public abstract class BufferedContext {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * The following flags help the internals of validate() determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * the appropriate (meaning correct, or optimal) code path when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * setting up the current context.  The flags can be bitwise OR'd
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * together as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * Indicates that no flags are needed; take all default code paths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    64
    @Native public static final int NO_CONTEXT_FLAGS = (0 << 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * Indicates that the source surface (or color value, if it is a simple
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * rendering operation) is opaque (has an alpha value of 1.0).  If this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * flag is present, it allows us to disable blending in certain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * situations in order to improve performance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    71
    @Native public static final int SRC_IS_OPAQUE    = (1 << 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Indicates that the operation uses an alpha mask, which may determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * the code path that is used when setting up the current paint state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    76
    @Native public static final int USE_MASK         = (1 << 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    protected RenderQueue rq;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    protected RenderBuffer buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * This is a reference to the most recently validated BufferedContext.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * this value is null, it means that there is no current context.  It is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * provided here so that validate() only needs to do a quick reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * check to see if the BufferedContext passed to that method is the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * as the one we've cached here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    protected static BufferedContext currentContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    90
    private AccelSurface    validatedSrcData;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    91
    private AccelSurface    validatedDstData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private Region          validatedClip;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private Composite       validatedComp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private Paint           validatedPaint;
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
    95
    // 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
    96
    private boolean         isValidatedPaintJustAColor;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
    97
    private int             validatedRGB;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    private int             validatedFlags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private boolean         xformInUse;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   100
    private int             transX;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   101
    private int             transY;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    protected BufferedContext(RenderQueue rq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        this.rq = rq;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        this.buf = rq.getBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   109
     * Fetches the BufferedContextContext associated with the dst. surface
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   110
     * 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
   111
     * 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
   112
     * state before issuing rendering commands.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   113
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   114
     * 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
   115
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   116
     * 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
   117
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   118
     * @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
   119
     * or lost
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   120
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   121
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   122
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   123
    public static void validateContext(AccelSurface srcData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   124
                                       AccelSurface dstData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   125
                                       Region clip, Composite comp,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   126
                                       AffineTransform xform,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   127
                                       Paint paint, SunGraphics2D sg2d,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   128
                                       int flags)
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   129
    {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   130
        // assert rq.lock.isHeldByCurrentThread();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   131
        BufferedContext d3dc = dstData.getContext();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   132
        d3dc.validate(srcData, dstData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   133
                      clip, comp, xform, paint, sg2d, flags);
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
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   136
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   137
     * Fetches the BufferedContextassociated with the surface
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   138
     * and disables all context state settings.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   139
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   140
     * 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
   141
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   142
     * 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
   143
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   144
     * @throws InvalidPipeException if the surface is not valid
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   145
     * or lost
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   146
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   147
     * @see RenderQueue#unlock
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
    public static void validateContext(AccelSurface surface) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   150
        // assert rt.lock.isHeldByCurrentThread();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   151
        validateContext(surface, surface,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   152
                        null, null, null, null, null, NO_CONTEXT_FLAGS);
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   153
    }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   154
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   155
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * Validates the given parameters against the current state for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * context.  If this context is not current, it will be made current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * for the given source and destination surfaces, and the viewport will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * be updated.  Then each part of the context state (clip, composite,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * etc.) is checked against the previous value.  If the value has changed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * since the last call to validate(), it will be updated accordingly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Note that the SunGraphics2D parameter is only used for the purposes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * of validating a (non-null) Paint parameter.  In all other cases it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * 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
   166
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   167
     * 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
   168
     *
11897
9e80dbac0293 7112642: Incorrect checking for graphics rendering object
bagiras
parents: 5506
diff changeset
   169
     * 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
   170
     *
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   171
     * @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
   172
     * or lost
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   174
    public void validate(AccelSurface srcData, AccelSurface dstData,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                         Region clip, Composite comp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                         AffineTransform xform,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                         Paint paint, SunGraphics2D sg2d, int flags)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   181
        boolean updateClip = false;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   182
        boolean updatePaint = false;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   183
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   184
        if (!dstData.isValid() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   185
            dstData.isSurfaceLost() || srcData.isSurfaceLost())
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   186
        {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   187
            invalidateContext();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   188
            throw new InvalidPipeException("bounds changed or surface lost");
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   189
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   191
        if (paint instanceof Color) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   192
            // REMIND: not 30-bit friendly
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   193
            int newRGB = ((Color)paint).getRGB();
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   194
            if (isValidatedPaintJustAColor) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   195
                if (newRGB != validatedRGB) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   196
                    validatedRGB = newRGB;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   197
                    updatePaint = true;
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
            } else {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   200
                validatedRGB = newRGB;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   201
                updatePaint = true;
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   202
                isValidatedPaintJustAColor = true;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   203
            }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   204
        } else if (validatedPaint != paint) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   205
            updatePaint = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   206
            // 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
   207
            // 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
   208
            isValidatedPaintJustAColor = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if ((currentContext != this) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            (srcData != validatedSrcData) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            (dstData != validatedDstData))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            if (dstData != validatedDstData) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                // the clip is dependent on the destination surface, so we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                // need to update it if we have a new destination surface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                updateClip = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            if (paint == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                // make sure we update the color state (otherwise, it might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                // not be updated if this is the first time the context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                // is being validated)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                updatePaint = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            // update the current source and destination surfaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            setSurfaces(srcData, dstData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            currentContext = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            validatedSrcData = srcData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            validatedDstData = dstData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        // validate clip
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   237
        if ((clip != validatedClip) || updateClip) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            if (clip != null) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   239
                if (updateClip ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   240
                    validatedClip == null ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   241
                    !(validatedClip.isRectangular() && clip.isRectangular()) ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   242
                    ((clip.getLoX() != validatedClip.getLoX() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   243
                      clip.getLoY() != validatedClip.getLoY() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   244
                      clip.getHiX() != validatedClip.getHiX() ||
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   245
                      clip.getHiY() != validatedClip.getHiY())))
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   246
                {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   247
                    setClip(clip);
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   248
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                resetClip();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            validatedClip = clip;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        // validate composite (note that a change in the context flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        // may require us to update the composite state, even if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        // composite has not changed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        if ((comp != validatedComp) || (flags != validatedFlags)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            if (comp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                setComposite(comp, flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                resetComposite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
            // the paint state is dependent on the composite state, so make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            // sure we update the color below
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            updatePaint = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            validatedComp = comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            validatedFlags = flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        // validate transform
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   272
        boolean txChanged = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        if (xform == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            if (xformInUse) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                resetTransform();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                xformInUse = false;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   277
                txChanged = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   278
            } else if (sg2d != null) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   279
                if (transX != sg2d.transX || transY != sg2d.transY) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   280
                    txChanged = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   281
                }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   282
            }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   283
            if (sg2d != null) {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   284
                transX = sg2d.transX;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   285
                transY = sg2d.transY;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            setTransform(xform);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            xformInUse = true;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   290
            txChanged = true;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   291
        }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   292
        // 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
   293
        if (!isValidatedPaintJustAColor && txChanged) {
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   294
            updatePaint = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        // validate paint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        if (updatePaint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            if (paint != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                BufferedPaints.setPaint(rq, sg2d, paint, flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                BufferedPaints.resetPaint(rq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            validatedPaint = paint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        // mark dstData dirty
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   308
        // REMIND: is this really needed now? we do it in SunGraphics2D..
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        dstData.markDirty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * Invalidates the surfaces associated with this context.  This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * useful when the context is no longer needed, and we want to break
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * the chain caused by these surface references.
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   316
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   317
     * 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
   318
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   319
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   320
     * @see RenderQueue#unlock
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public void invalidateSurfaces() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        validatedSrcData = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        validatedDstData = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   327
    private void setSurfaces(AccelSurface srcData,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   328
                             AccelSurface dstData)
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   329
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        rq.ensureCapacityAndAlignment(20, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        buf.putInt(SET_SURFACES);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        buf.putLong(srcData.getNativeOps());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        buf.putLong(dstData.getNativeOps());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    private void resetClip() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        buf.putInt(RESET_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    private void setClip(Region clip) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        if (clip.isRectangular()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            rq.ensureCapacity(20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            buf.putInt(SET_RECT_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            buf.putInt(clip.getLoX()).putInt(clip.getLoY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            buf.putInt(clip.getHiX()).putInt(clip.getHiY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
            rq.ensureCapacity(28); // so that we have room for at least a span
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            buf.putInt(BEGIN_SHAPE_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            buf.putInt(SET_SHAPE_CLIP_SPANS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            // include a placeholder for the span count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            int countIndex = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            buf.putInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            int spanCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            int remainingSpans = buf.remaining() / BYTES_PER_SPAN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            int span[] = new int[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            SpanIterator si = clip.getSpanIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            while (si.nextSpan(span)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                if (remainingSpans == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                    buf.putInt(countIndex, spanCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                    rq.flushNow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                    buf.putInt(SET_SHAPE_CLIP_SPANS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                    countIndex = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                    buf.putInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                    spanCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                    remainingSpans = buf.remaining() / BYTES_PER_SPAN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                buf.putInt(span[0]); // x1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                buf.putInt(span[1]); // y1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                buf.putInt(span[2]); // x2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                buf.putInt(span[3]); // y2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                spanCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                remainingSpans--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            buf.putInt(countIndex, spanCount);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            buf.putInt(END_SHAPE_CLIP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    private void resetComposite() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        buf.putInt(RESET_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    private void setComposite(Composite comp, int flags) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        if (comp instanceof AlphaComposite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            AlphaComposite ac = (AlphaComposite)comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            rq.ensureCapacity(16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            buf.putInt(SET_ALPHA_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            buf.putInt(ac.getRule());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            buf.putFloat(ac.getAlpha());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            buf.putInt(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        } else if (comp instanceof XORComposite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            int xorPixel = ((XORComposite)comp).getXorPixel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            rq.ensureCapacity(8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            buf.putInt(SET_XOR_COMPOSITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            buf.putInt(xorPixel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            throw new InternalError("not yet implemented");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    private void resetTransform() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        rq.ensureCapacity(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        buf.putInt(RESET_TRANSFORM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    private void setTransform(AffineTransform xform) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        // assert rq.lock.isHeldByCurrentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        rq.ensureCapacityAndAlignment(52, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        buf.putInt(SET_TRANSFORM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        buf.putDouble(xform.getScaleX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        buf.putDouble(xform.getShearY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        buf.putDouble(xform.getShearX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        buf.putDouble(xform.getScaleY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        buf.putDouble(xform.getTranslateX());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        buf.putDouble(xform.getTranslateY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    }
887
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
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   428
     * Resets this context's surfaces and all attributes.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   429
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   430
     * 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
   431
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   432
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   433
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   434
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   435
    public void invalidateContext() {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   436
        resetTransform();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   437
        resetComposite();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   438
        resetClip();
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   439
        BufferedPaints.resetPaint(rq);
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   440
        invalidateSurfaces();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   441
        validatedComp = null;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   442
        validatedClip = null;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   443
        validatedPaint = null;
1732
cbd1ef3625fc 6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
tdv
parents: 887
diff changeset
   444
        isValidatedPaintJustAColor = false;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   445
        xformInUse = false;
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
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   448
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   449
     * 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
   450
     * pipeline.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   451
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   452
     * @return a render queue
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   453
     * @see RenderQueue
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   454
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   455
    public abstract RenderQueue getRenderQueue();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   456
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   457
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   458
     * Saves the the state of this context.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   459
     * It may reset the current context.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   460
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   461
     * 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
   462
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   463
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   464
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   465
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   466
    public abstract void saveState();
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   467
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   468
    /**
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   469
     * Restores the native state of this context.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   470
     * It may reset the current context.
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   471
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   472
     * 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
   473
     *
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   474
     * @see RenderQueue#lock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   475
     * @see RenderQueue#unlock
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   476
     */
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 2
diff changeset
   477
    public abstract void restoreState();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
}