Searched defs:cyclic (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DGradientPaint.java47 * If the gradient is cyclic then the points on the extended P1, P2
65 boolean cyclic; field in class:GradientPaint
126 * Constructs either a cyclic or acyclic <code>GradientPaint</code>
140 * @param cyclic <code>true</code> if the gradient pattern should cycle
149 boolean cyclic) {
151 this.cyclic = cyclic;
155 * Constructs either a cyclic or acyclic <code>GradientPaint</code>
165 * @param cyclic <code>true</code> if the gradient pattern should cycle
170 @ConstructorProperties({ "point1", "color1", "point2", "color2", "cyclic" })
143 GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2, boolean cyclic) argument
171 GradientPaint(Point2D pt1, Color color1, Point2D pt2, Color color2, boolean cyclic) argument
[all...]
H A DGradientPaintContext.java86 boolean cyclic; field in class:GradientPaintContext
93 Color c1, Color c2, boolean cyclic) {
136 if (cyclic) {
159 this.cyclic = cyclic;
188 interp = new int[cyclic ? 513 : 257];
197 if (cyclic) {
239 if (cyclic) {
91 GradientPaintContext(ColorModel cm, Point2D p1, Point2D p2, AffineTransform xform, Color c1, Color c2, boolean cyclic) argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.h61 BOOL cyclic; member in struct:_stateShadingInfo
62 CGFloat length; // of the total segment (used by the cyclic gradient)
63 CGFloat period; // of the cycle (used by the cyclic gradient)
64 CGFloat offset; // of the cycle from the start (used by the cyclic gradient)
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DPaints.cpp112 jboolean useMask, jboolean cyclic,
166 DWORD wrapMode = cyclic ? D3DTADDRESS_WRAP : D3DTADDRESS_CLAMP;
197 if (cyclic) flags |= BASIC_GRAD_IS_CYCLIC;
111 D3DPaints_SetGradientPaint(D3DContext *d3dc, jboolean useMask, jboolean cyclic, jdouble p0, jdouble p1, jdouble p3, jint pixel1, jint pixel2) argument
H A DD3DRenderQueue.cpp730 jboolean cyclic = NEXT_BOOLEAN(b); local
736 res = D3DPaints_SetGradientPaint(d3dc, useMask, cyclic,
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLPaints.c174 jboolean useMask, jboolean cyclic,
211 cyclic ? GL_REPEAT : GL_CLAMP_TO_EDGE);
173 OGLPaints_SetGradientPaint(OGLContext *oglc, jboolean useMask, jboolean cyclic, jdouble p0, jdouble p1, jdouble p3, jint pixel1, jint pixel2) argument
H A DOGLRenderQueue.c566 jboolean cyclic = NEXT_BOOLEAN(b); local
572 OGLPaints_SetGradientPaint(oglc, useMask, cyclic,

Completed in 44 milliseconds