Searched refs:pixel (Results 101 - 125 of 139) sorted by relevance

123456

/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java531 // surfaces, regardless of the pixel masks reported by
631 private static native void XSetForeground(long xgc, int pixel); argument
642 int pixel)
644 return getGC(clip, compState, comp, pixel, validatedExposures);
654 int pixel, boolean needExposures)
690 // validate pixel
691 pixel ^= xorpixelmod;
692 if (pixel != validatedPixel) {
693 validatedPixel = pixel;
694 XSetForeground(xgc, pixel);
640 getRenderGC(Region clip, int compState, Composite comp, int pixel) argument
652 getGC(Region clip, int compState, Composite comp, int pixel, boolean needExposures) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAny3Byte.h56 #define StoreAny3BytePixelData(pPix, x, pixel, PREFIX) \
H A DAny4Byte.h57 #define StoreAny4BytePixelData(pPix, x, pixel, PREFIX) \
H A DLoopMacros.h42 * pixel formats - greatly simplifying all aspects of creating
173 * macros. It converts from the source pixel format to the destination
187 * macros. It converts from the source pixel format to the destination
201 * macros. It converts from the source pixel format to the destination
215 * macros. It converts from the source pixel format to the destination
230 * macros. It converts from the source pixel format to the destination
244 * macros. It converts from the source pixel format to the destination
262 * macros. It converts from the source pixel format to the destination
282 * This macro determines whether or not the given pixel is considered
283 * "transparent" for XOR purposes. The ARGB pixel i
[all...]
H A DGraphicsPrimitiveMgr.h114 * format pixel for a given ARGB color value for a particular
230 jint pixel, struct _NativePrimitive *pPrim,
238 jint pixel, struct _NativePrimitive *pPrim,
247 jint x1, jint y1, jint pixel,
348 jint pixel, struct _NativePrimitive *pPrim,
H A DDrawLine.c396 jint pixel = GrPrim_Sg2dGetPixel(env, sg2d); local
424 LineUtils_ProcessLine(&rasInfo, pixel,
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DX11TextRenderer.java79 null, sg2d.pixel);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRCompositeManager.java128 public void setForeground(int pixel) { argument
129 solidColor.setColorValues(pixel, false);
169 if (sg2d != null && validatedPixel != sg2d.pixel) {
170 validatedPixel = sg2d.pixel;
H A DXRBackend.java72 public void setGCForeground(long gc, int pixel); argument
H A DXRSurfaceData.java463 // validate pixel
464 int pixel = sg2d.pixel;
465 if (validatedGCForegroundPixel != pixel) {
466 renderQueue.setGCForeground(xgc, pixel ^ xorpixelmod);
467 validatedGCForegroundPixel = pixel;
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME41 Fetching retrieving pixels from the source pixel data
44 Encoding converting source colors into a destination pixel
122 transparent pixel is encountered. If no transparent pixels
147 with the indicated "bit" to indicate an opaque pixel. If bits set
155 with the indicated "bit" to indicate a transparent pixel. If bits
187 Return the pixel value of the closest color to the requested
193 void GetPixelRGB(pixel, red, green, blue);
195 "pixel" into the red, green, and blue arguments. Note that
211 Return the pixel value of the next color darker than the
226 Return the pixel valu
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java428 int pixel);
430 int pixel; field in class:D3DSurfaceData.D3DDataBufferNative
450 pixel = dbGetPixelNative(sData.getNativeOps(), x, y);
454 retPixel = pixel;
460 protected void setElem(final int x, final int y, final int pixel, argument
472 dbSetPixelNative(sData.getNativeOps(), x, y, pixel);
510 * - the pixel shaders are available, and
427 dbSetPixelNative(long pData, int x, int y, int pixel) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DPaints.cpp39 jint pixel, paintState; local
80 pixel = (ea << 24) | (ea << 16) | (ea << 8) | (ea << 0);
81 d3dc->pVCacher->SetColor(pixel);
88 D3DPaints_SetColor(D3DContext *d3dc, jint pixel) argument
92 J2dTraceLn1(J2D_TRACE_INFO, "D3DPaints_SetColor: pixel=%08x", pixel);
102 d3dc->pVCacher->SetColor(pixel);
227 // pixel shader
246 // pixel state has been set appropriately in D3DPaints_ResetPaint()
307 // pixel stat
[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;
H A DmultiVis.c509 int32_t pixel; local
559 /* let's assume byte per pixel for overlay image for now */
576 pixel = (int32_t) XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
577 XPutPixel(ximage,dst_x+x1, dst_y+y1,(unsigned long)pixel);
605 pixel = (int32_t) XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
606 XPutPixel(ximage,dst_x+x1, dst_y+y1,(unsigned long)pixel);
631 pixel = (int32_t) XGetPixel(ximage_ipm,dst_x+x1,
633 XPutPixel(ximage,dst_x+x1, dst_y+y1,(unsigned long)pixel);
1104 * pixel. */
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorConvertOp.java50 * This class performs a pixel-by-pixel color conversion of the data in
841 Object pixel;
851 pixel = null;
855 pixel = srcRas.getDataElements(x, y, pixel);
856 color = srcCM.getNormalizedComponents(pixel, color, 0);
872 pixel = null;
890 pixel = dstCM.getDataElements(dstColor, 0, pixel);
[all...]
H A DBufferedImage.java162 * from lower to higher byte addresses within each pixel.
172 * A, B, G, R from lower to higher byte addresses within each pixel.
239 * <p> Images with 2 or 4 bits per pixel may be constructed via
244 * <p> Images with 8 bits per pixel should use the image types
523 * image should have 1, 2, or 4 bits per pixel. If the color model
524 * has 1 or 2 entries, the image will have 1 bit per pixel. If it
525 * has 3 or 4 entries, the image with have 2 bits per pixel. If
527 * pixel. Otherwise, an IllegalArgumentException will be thrown.
893 * Returns an integer pixel in the default RGB color model
906 * @param x the X coordinate of the pixel fro
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.h55 * The pixel parameter should be a color to which the transparent
60 jint pixel);
111 jint bgPixel; /* bg pixel for the pixmap */
112 jboolean isBgInitialized; /* whether the bg pixel is valid */
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/share/native/sun/java2d/opengl/
H A DOGLContext.h77 jint pixel; member in struct:__anon927
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java312 /* this is going to be set in the pixel store
373 int pixel = 0;
394 pixel =
398 if (pixel != transparentPixel) {
399 pixel |= 0xff000000;
401 wPixels[col+rowOffset] = pixel;
405 pixel =
416 pixel |= 0xff000000;
418 wPixels[col+rowOffset] = pixel;
508 next transmitted pixel an
[all...]
H A DImageRepresentation.java178 * the pixel data. Subclasses can override this method to return
398 // off is first pixel read so it must be in bounds
460 int pixel;
564 int pixel;
627 pixel = model.getRGB(pix[poff++]);
628 tmp = cmodel.getDataElements(pixel,tmp);
/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/classes/sun/java2d/loops/
H A DSurfaceType.java437 public int rgbFor(int pixel, ColorModel cm) { argument
438 return pixelConverter.pixelToRgb(pixel, cm);

Completed in 192 milliseconds

123456