Searched defs:transparency (Results 26 - 36 of 36) sorted by relevance

12

/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLGraphicsConfig.java103 public SurfaceData createManagedSurface(int w, int h, int transparency) { argument
105 getColorModel(transparency),
245 public ColorModel getColorModel(int transparency) { argument
246 switch (transparency) {
425 int transparency, int type)
428 transparency == Transparency.BITMASK)
438 boolean isOpaque = transparency == Transparency.OPAQUE;
445 transparency, type);
424 createCompatibleVolatileImage(int width, int height, int transparency, int type) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXGraphicsConfig.java96 public SurfaceData createManagedSurface(int w, int h, int transparency) { argument
98 getColorModel(transparency),
198 public ColorModel getColorModel(int transparency) { argument
199 switch (transparency) {
400 int transparency, int type)
403 transparency == Transparency.BITMASK)
413 boolean isOpaque = transparency == Transparency.OPAQUE;
420 transparency, type);
399 createCompatibleVolatileImage(int width, int height, int transparency, int type) argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorModel.java164 int transparency = Transparency.TRANSLUCENT; field in class:ColorModel
254 * premultiplied with the alpha value. The transparency type is
294 * multiplied by the alpha sample. The <code>transparency</code>
312 * @param transparency what alpha values can be represented by this
319 * transparency is not a valid value.
328 int transparency,
344 if (transparency < Transparency.OPAQUE ||
345 transparency > Transparency.TRANSLUCENT)
347 throw new IllegalArgumentException("Unknown transparency: "+
348 transparency);
325 ColorModel(int pixel_bits, int[] bits, ColorSpace cspace, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.java84 * presence or absence of an alpha channel to the transparency
1555 // This must take any transparency node into account as well, as
1557 // a transparency node is dealt with here, set a flag to indicate
1558 // this to the transparency processor below. If we discover that
1885 private boolean wantAlpha(Node transparency) { argument
1887 Node alpha = transparency.getFirstChild(); // Alpha must be first if present
2066 // transparency, so process it here only if there was no Chroma node
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.h147 int transparency; member in struct:__anon675
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DImageTests.java257 int transparency)
263 (transparency != Transparency.OPAQUE));
265 (transparency == Transparency.TRANSLUCENT));
304 int transparency; field in class:ImageTests.CompatImg
306 public CompatImg(int transparency) { argument
308 Destinations.CompatImg.ShortNames[transparency],
309 Destinations.CompatImg.LongDescriptions[transparency],
310 transparency);
311 this.transparency = transparency;
256 TriStateImageType(Group parent, String nodename, String desc, int transparency) argument
438 int transparency; field in class:ImageTests.DrawableImage
441 DrawableImage(TriStateImageType parent, int transparency, boolean possible) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java221 * supports the specified transparency.
223 public ColorModel getColorModel(int transparency) { argument
224 switch (transparency) {
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRSurfaceData.java227 int transparency) {
228 int depth = transparency > Transparency.OPAQUE ? 32 : 24;
238 (gc, width, height, image, getSurfaceType(gc, transparency),
239 cm, drawable, transparency,
240 XRUtils.getPictureFormatForTransparency(transparency), depth);
244 SurfaceType sType, ColorModel cm, int depth, int transparency)
358 * transparency requirement.
361 int transparency) {
364 switch (transparency) {
582 int transparency; field in class:XRSurfaceData.XRPixmapSurfaceData
223 createData(XRGraphicsConfig gc, int width, int height, ColorModel cm, Image image, long drawable, int transparency) argument
243 XRSurfaceData(X11ComponentPeer peer, XRGraphicsConfig gc, SurfaceType sType, ColorModel cm, int depth, int transparency) argument
360 getSurfaceType(XRGraphicsConfig gc, int transparency) argument
584 XRPixmapSurfaceData(XRGraphicsConfig gc, int width, int height, Image image, SurfaceType sType, ColorModel cm, long drawable, int transparency, int pictFormat, int depth) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java428 int transparency)
431 getSurfaceType(gc, transparency, true),
432 cm, drawable, transparency);
514 int transparency)
516 return getSurfaceType(gc, transparency, false);
520 int transparency,
523 boolean transparent = (transparency == Transparency.BITMASK);
756 int transparency; field in class:X11SurfaceData.X11PixmapSurfaceData
762 long drawable, int transparency)
768 this.transparency
424 createData(X11GraphicsConfig gc, int width, int height, ColorModel cm, Image image, long drawable, int transparency) argument
513 getSurfaceType(X11GraphicsConfig gc, int transparency) argument
519 getSurfaceType(X11GraphicsConfig gc, int transparency, boolean pixmapSurface) argument
758 X11PixmapSurfaceData(X11GraphicsConfig gc, int width, int height, Image image, SurfaceType sType, ColorModel cm, long drawable, int transparency) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWComponentPeer.java540 public ColorModel getColorModel(int transparency) { argument
541 // return WToolkit.config.getColorModel(transparency);
544 return gc.getColorModel(transparency);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWindow.java338 public ColorModel getColorModel(int transparency) { argument
339 return graphicsConfig.getColorModel (transparency);

Completed in 58 milliseconds

12