Searched defs:pixel (Results 1 - 25 of 49) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawPath.h31 jint pixel; member in struct:__anon913
H A DFillRect.c45 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
84 pixel, pPrim, &compInfo);
H A DFillSpans.c41 jobject sg2d, jobject sData, jint pixel, jlong pIterator, jobject si)
93 pixel, pPrim, &compInfo);
39 Java_sun_java2d_loops_FillSpans_FillSpans(JNIEnv *env, jobject self, jobject sg2d, jobject sData, jint pixel, jlong pIterator, jobject si) argument
H A DDrawRect.c47 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
109 pixel, xsize, 0,
116 pixel, ysize, 0,
123 pixel, ysize, 0,
130 pixel, xsize, 0,
H A DDrawPath.c41 DHND(hnd)->pixel,
51 DHND(hnd)->pRasInfo, x0, y0, DHND(hnd)->pixel, 1, 0,
70 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
150 dHData.pixel = pixel;
H A DFillParallelogram.c49 jint pixel; local
70 pixel = GrPrim_Sg2dGetPixel(env, sg2d);
121 pixel, pPrim, &compInfo);
139 pixel, pPrim, &compInfo);
155 pixel, pPrim, &compInfo);
171 pixel, pPrim, &compInfo);
H A DFillPath.c39 DHND(hnd)->pRasInfo, x0, y0, DHND(hnd)->pixel, x1 - x0 + 1, 0,
59 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
139 dHData.pixel = pixel;
H A DDrawLine.c396 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
424 LineUtils_ProcessLine(&rasInfo, pixel,
H A DDrawParallelogram.c35 pRasInfo, pixel, pPrim, pFunc, pCompInfo) \
41 LineUtils_ProcessLine(pRasInfo, pixel, \
103 jint pixel; local
135 pixel = GrPrim_Sg2dGetPixel(env, sg2d);
179 // If the line widths are both less than a pixel wide
197 &rasInfo, pixel, pPrim, pLine, &compInfo);
199 &rasInfo, pixel, pPrim, pLine, &compInfo);
201 &rasInfo, pixel, pPrim, pLine, &compInfo);
203 &rasInfo, pixel, pPrim, pLine, &compInfo);
296 pixel, pPri
[all...]
H A DDrawPolygons.c66 jint pixel, jint transX, jint transY,
83 LineUtils_ProcessLine(pRasInfo, pixel, pLine,
91 LineUtils_ProcessLine(pRasInfo, pixel, pLine,
126 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
211 pixel, transX, transY,
62 ProcessPoly(SurfaceDataRasInfo *pRasInfo, DrawLineFunc *pLine, NativePrimitive *pPrim, CompositeInfo *pCompInfo, jint pixel, jint transX, jint transY, jint *xPointsPtr, jint *yPointsPtr, jint *nPointsPtr, jint numPolys, jboolean close) argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFillSpans.java77 int pixel, long pIterator, SpanIterator si);
85 FillSpans(sg2d, dest, sg2d.pixel, si.getNativeIterator(), si);
76 FillSpans(SunGraphics2D sg2d, SurfaceData dest, int pixel, long pIterator, SpanIterator si) argument
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_scaleloop.h51 unsigned int pixel; local
73 ColSetup(srcTotalWidth, dstTotalWidth, pixel);
74 PixelDecode(colormodel, pixel, red, green, blue, alpha);
76 DitherPixel(DSTX, DSTY, pixel, red, green, blue);
77 PutPixelInc(pixel, red, green, blue);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DNullSurfaceData.java96 * Does the pixel accessibility of the destination surface
111 * Returns the pixel data for the specified Argb value packed
122 public int rgbFor(int pixel) { argument
123 return pixel;
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11PMBlitBgLoops.java95 int pixel = dst.pixelFor(bgColor);
100 xgc, pixel,
112 long xgc, int pixel,
111 nativeBlitBg(long srcData, long dstData, long xgc, int pixel, int sx, int sy, int dx, int dy, int w, int h) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRColor.java85 public void setColorValues(int pixel, boolean pre) { argument
86 long pix = XRUtils.intToULong(pixel);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPixelConverter.java32 * rgb colorspace specification and the equivalent value for a pixel
34 * SurfaceType objects, since the conversion between pixel values
39 * we can calculate the pixel values in these generic cases as well.
91 public int pixelToRgb(int pixel, ColorModel cm) { argument
93 return pixel;
108 * an alpha != 1 cannot be converted to an Xrgb pixel
114 * low order byte of a packed-byte pixel will be the first
119 * pixels[0] = b; // low order byte of an Xrgb pixel
121 * pixels[2] = r; // high order byte of an Xrgb pixel
133 public int pixelToRgb(int pixel, ColorMode argument
146 pixelToRgb(int pixel, ColorModel cm) argument
161 pixelToRgb(int pixel, ColorModel cm) argument
176 pixelToRgb(int pixel, ColorModel cm) argument
198 pixelToRgb(int pixel, ColorModel cm) argument
220 pixelToRgb(int pixel, ColorModel cm) argument
249 pixelToRgb(int pixel, ColorModel cm) argument
276 pixelToRgb(int pixel, ColorModel cm) argument
294 pixelToRgb(int pixel, ColorModel cm) argument
312 pixelToRgb(int pixel, ColorModel cm) argument
338 pixelToRgb(int pixel, ColorModel cm) argument
374 pixelToRgb(int pixel, ColorModel cm) argument
397 pixelToRgb(int pixel, ColorModel cm) argument
419 pixelToRgb(int pixel, ColorModel cm) argument
442 pixelToRgb(int pixel, ColorModel cm) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Ddither.c216 int pixel = cmap[i]; local
217 rgb = (pixel & 0x00f80000) >> 9;
218 rgb |= (pixel & 0x0000f800) >> 6;
219 rgb |= (pixel & 0xf8) >> 3;
221 pixel = cmap[cmap_len - i - 1];
222 rgb = (pixel & 0x00f80000) >> 9;
223 rgb |= (pixel & 0x0000f800) >> 6;
224 rgb |= (pixel & 0xf8) >> 3;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedPaints.java55 setColor(rq, sg2d.pixel);
90 private static void setColor(RenderQueue rq, int pixel) { argument
95 buf.putInt(pixel);
119 * The gradient renderer uses a two-pixel 1D texture where the first
120 * pixel contains the first GradientPaint color, and the second pixel
325 * space to an IntArgbPre pixel value, optionally in linear RGB space.
351 * containing IntArgbPre pixel values. If the linear parameter
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DBufferedMaskBlit.c173 jint pixel = pSrc[0]; local
174 if (pathA == 0xff && (pixel >> 24) + 1 == 0) {
175 pBuf[0] = pixel;
178 ExtractIntDcmComponents1234(pixel, a, r, g, b);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDirectColorModel.java33 * class that works with pixel values that represent RGB
35 * samples for a single pixel into a single int, short, or byte quantity.
42 * There must be three color samples in the pixel values and there can
44 * pixel representation of type <code>transferType</code>, the array
51 * the single int pixel representation used by other methods. The
61 * The translation from pixel values to color/alpha components for
70 * of pixel data will be done according to the masks of the
73 * A single int pixel representation is valid for all objects of this
74 * class, since it is always possible to represent pixel values used with
77 * due to an invalid pixel valu
313 getDefaultRGBComponents(int pixel) argument
321 getsRGBComponentFromsRGB(int pixel, int idx) argument
335 getsRGBComponentFromLinearRGB(int pixel, int idx) argument
368 getRed(int pixel) argument
391 getGreen(int pixel) argument
414 getBlue(int pixel) argument
431 getAlpha(int pixel) argument
453 getRGB(int pixel) argument
758 getDataElements(int rgb, Object pixel) argument
926 getComponents(int pixel, int[] components, int offset) argument
977 getComponents(Object pixel, int[] components, int offset) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Robot.c212 jint *ary; /* Array of jints for sending pixel values back
235 /* Array to use to crunch around the pixel values */
247 jint pixel = (jint) XGetPixel(image, x, y); /* Note ignore upper local
252 pixel |= 0xff000000; /* alpha - full opacity */
254 ary[(y * width) + x] = pixel;
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11FontScaler_md.c102 int pixel = ximage->f.get_pixel(ximage, column, row); local
103 fprintf(stderr, (pixel == 0) ? " " : "XX");
H A DX11PMBlitLoops.c130 jlong xgc, jint pixel,
165 srcDrawable = srcXsdo->GetPixmapWithBg(env, srcXsdo, pixel);
351 /* if src pixel is opaque, set the bit in the bitmap */
375 /* if src pixel is opaque, set the bit in the bitmap */
127 Java_sun_java2d_x11_X11PMBlitBgLoops_nativeBlitBg(JNIEnv *env, jobject joSelf, jlong srcData, jlong dstData, jlong xgc, jint pixel, jint srcx, jint srcy, jint dstx, jint dsty, jint width, jint height) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp408 jint pixel = 0; local
412 RETURN_STATUS_IF_NULL(d3dsdo = (D3DSDOps *)jlong_to_ptr(pData), pixel);
413 RETURN_STATUS_IF_NULL(d3dsdo->pResource, pixel);
414 RETURN_STATUS_IF_NULL(pMgr = D3DPipelineManager::GetInstance(), pixel);
418 return pixel;
444 pixel = *(jint*)lRect.pBits;
446 pixel = *(unsigned short*)lRect.pBits;
454 return pixel;
463 (JNIEnv *env, jclass clazz, jlong pData, jint x, jint y, jint pixel)
501 *(jint*)lRect.pBits = pixel;
462 Java_sun_java2d_d3d_D3DSurfaceData_dbSetPixelNative(JNIEnv *env, jclass clazz, jlong pData, jint x, jint y, jint pixel) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djpegdecoder.c503 int *ip, pixel; local
674 pixel = (*--bp) << 24;
675 pixel |= (*--bp);
676 pixel |= (*--bp) << 8;
677 pixel |= (*--bp) << 16;
678 *--ip = pixel;
684 pixel = (*--bp);
685 pixel |= (*--bp) << 8;
686 pixel |= (*--bp) << 16;
687 *--ip = pixel;
[all...]

Completed in 79 milliseconds

12