Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.desktop/share/classes/sun/java2d/loops/FillRect.java
41159 views
1
/*
2
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
/*
27
* @author Charlton Innovations, Inc.
28
*/
29
30
package sun.java2d.loops;
31
32
import sun.java2d.SunGraphics2D;
33
import sun.java2d.SurfaceData;
34
35
/**
36
* FillRect
37
* 1) draw solid color rectangle onto destination surface
38
* 2) must accept output area [x, y, dx, dy]
39
* from within the surface description data for clip rect
40
*/
41
public class FillRect extends GraphicsPrimitive
42
{
43
public static final String methodSignature = "FillRect(...)".toString();
44
45
public static final int primTypeID = makePrimTypeID();
46
47
public static FillRect locate(SurfaceType srctype,
48
CompositeType comptype,
49
SurfaceType dsttype)
50
{
51
return (FillRect)
52
GraphicsPrimitiveMgr.locate(primTypeID,
53
srctype, comptype, dsttype);
54
}
55
56
protected FillRect(SurfaceType srctype,
57
CompositeType comptype,
58
SurfaceType dsttype)
59
{
60
super(methodSignature, primTypeID, srctype, comptype, dsttype);
61
}
62
63
public FillRect(long pNativePrim,
64
SurfaceType srctype,
65
CompositeType comptype,
66
SurfaceType dsttype)
67
{
68
super(pNativePrim, methodSignature, primTypeID, srctype, comptype, dsttype);
69
}
70
71
/**
72
* All FillRect implementors must have this invoker method
73
*/
74
public native void FillRect(SunGraphics2D sg2d, SurfaceData dest,
75
int x, int y, int w, int h);
76
77
static {
78
GraphicsPrimitiveMgr.registerGeneral(new FillRect(null, null, null));
79
}
80
81
protected GraphicsPrimitive makePrimitive(SurfaceType srctype,
82
CompositeType comptype,
83
SurfaceType dsttype)
84
{
85
return new General(srctype, comptype, dsttype);
86
}
87
88
public static class General extends FillRect {
89
public MaskFill fillop;
90
91
public General(SurfaceType srctype,
92
CompositeType comptype,
93
SurfaceType dsttype)
94
{
95
super(srctype, comptype, dsttype);
96
fillop = MaskFill.locate(srctype, comptype, dsttype);
97
}
98
99
public void FillRect(SunGraphics2D sg2d, SurfaceData dest,
100
int x, int y, int w, int h)
101
{
102
fillop.MaskFill(sg2d, dest, sg2d.composite, x, y, w, h, null, 0, 0);
103
}
104
}
105
106
public GraphicsPrimitive traceWrap() {
107
return new TraceFillRect(this);
108
}
109
110
private static class TraceFillRect extends FillRect {
111
FillRect target;
112
113
public TraceFillRect(FillRect target) {
114
super(target.getSourceType(),
115
target.getCompositeType(),
116
target.getDestType());
117
this.target = target;
118
}
119
120
public GraphicsPrimitive traceWrap() {
121
return this;
122
}
123
124
public void FillRect(SunGraphics2D sg2d, SurfaceData dest,
125
int x, int y, int w, int h)
126
{
127
tracePrimitive(target);
128
target.FillRect(sg2d, dest, x, y, w, h);
129
}
130
}
131
}
132
133