Searched defs:bitDepth (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DDisplayMode.java49 private int bitDepth; field in class:DisplayMode
56 * @param bitDepth the bit depth of the display, in bits per
65 public DisplayMode(int width, int height, int bitDepth, int refreshRate) { argument
67 this.bitDepth = bitDepth;
103 return bitDepth;
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DGraphicsDevice.java336 int bitDepth,
341 final int bitDepth, final int refreshRate)
345 super.configDisplayMode(screen, w, width, height, bitDepth,
375 bitDepth, refreshRate);
334 configDisplayModeNative(int screen, long hwnd, int width, int height, int bitDepth, int refreshRate) argument
339 configDisplayMode(final int screen, final WindowPeer w, final int width, final int height, final int bitDepth, final int refreshRate) argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DGraphicsDevice.cpp35 jint bitDepth, jint refreshRate);
37 jint height, jint bitDepth, jint refreshRate);
253 jint width, jint height, jint bitDepth, jint refreshRate)
282 if (bitDepth == 32) {
284 } else if (bitDepth == 16) {
323 bitDepth);
329 bitDepth, refreshRate);
366 int bitDepth = -1; local
369 case D3DFMT_X8R8G8B8: bitDepth = 32; break;
371 case D3DFMT_X1R5G5B5: bitDepth
251 Java_sun_java2d_d3d_D3DGraphicsDevice_configDisplayModeNative(JNIEnv *env, jclass gdc, jint gdiScreen, jlong window, jint width, jint height, jint bitDepth, jint refreshRate) argument
413 int bitDepth = -1; local
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32GraphicsDevice.java438 int height, int bitDepth,
437 configDisplayMode(int screen, WindowPeer w, int width, int height, int bitDepth, int refreshRate) argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java65 private int bitDepth; field in class:PNGImageDecoder
151 bitDepth = getByte(st+8);
205 if (bitDepth == 16) {
225 t = 0xFF & ((bitDepth == 16) ? (t >> 8) : t);
259 switch(bitDepth) {
269 int combinedType = colorType|(bitDepth<<3);
270 int bitMask = (1<<(bitDepth>=8?8:bitDepth))-1;
277 cm = new IndexColorModel(bitDepth,red_map.length,
280 cm = new IndexColorModel(bitDepth,red_ma
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java261 int bitDepth = signature[0] & 0xff;
278 if (bitDepth != 1 && bitDepth != 2 && bitDepth != 4 &&
279 bitDepth != 8 && bitDepth != 16) {
286 if (colorType == PNG_COLOR_PALETTE && bitDepth == 16) {
292 (bitDepth != 8 && bitDepth != 16)) {
308 metadata.IHDR_bitDepth = bitDepth;
868 createRaster(int width, int height, int bands, int scanlineStride, int bitDepth) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsDevice.cpp1066 jint bitDepth, jint refreshRate) {
1086 height, bitDepth, refreshRate);
1163 jint width, jint height, jint bitDepth, jint refreshRate)
1173 dm.dmBitsPerPel = bitDepth;
1211 jint height, jint bitDepth, jint refreshRate) {
1216 bitDepth, refreshRate);
1065 CreateDisplayMode(JNIEnv* env, jint width, jint height, jint bitDepth, jint refreshRate) argument
1161 Java_sun_awt_Win32GraphicsDevice_configDisplayMode(JNIEnv* env, jobject graphicsDevice, jint screen, jobject windowPeer, jint width, jint height, jint bitDepth, jint refreshRate) argument
1210 addDisplayMode(JNIEnv* env, jobject arrayList, jint width, jint height, jint bitDepth, jint refreshRate) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c1787 jint bitDepth, jint refreshRate)
1813 width, height, bitDepth, validRefreshRate);
1819 jint bitDepth, jint refreshRate)
1822 bitDepth, refreshRate);
1786 X11GD_CreateDisplayMode(JNIEnv *env, jint width, jint height, jint bitDepth, jint refreshRate) argument
1817 X11GD_AddDisplayMode(JNIEnv *env, jobject arrayList, jint width, jint height, jint bitDepth, jint refreshRate) argument

Completed in 596 milliseconds