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