Searched refs:d3dCaps (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/ |
H A D | D3DGraphicsDevice.java | 58 private ContextCapabilities d3dCaps; field in class:D3DGraphicsDevice 87 ContextCapabilities d3dCaps = getDeviceCaps(screen); 89 if ((d3dCaps.getCaps() & CAPS_DEVICE_OK) == 0) { 100 D3DGraphicsDevice gd = new D3DGraphicsDevice(screen, d3dCaps); 107 ContextCapabilities d3dCaps = null; 122 d3dCaps = new D3DContextCaps(res.caps, res.id); 127 return d3dCaps != null ? d3dCaps : new D3DContextCaps(CAPS_EMPTY, null); 131 return ((d3dCaps.getCaps() & cap) != 0); 134 private D3DGraphicsDevice(int screennum, ContextCapabilities d3dCaps) { argument [all...] |
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
H A D | D3DPipelineManager.cpp | 673 D3DCAPS9 d3dCaps; local 677 res = pd3d9->GetDeviceCaps(adapter, devType, &d3dCaps); 680 CHECK_CAP(d3dCaps.DevCaps, D3DDEVCAPS_DRAWPRIMTLVERTEX); 685 CHECK_CAP(d3dCaps.DevCaps, D3DDEVCAPS_HWTRANSFORMANDLIGHT); 687 if (d3dCaps.DeviceType == D3DDEVTYPE_HAL) { 688 CHECK_CAP(d3dCaps.DevCaps, D3DDEVCAPS_HWRASTERIZATION); 691 CHECK_CAP(d3dCaps.RasterCaps, D3DPRASTERCAPS_SCISSORTEST); 693 CHECK_CAP(d3dCaps.Caps3, D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD); 695 CHECK_CAP(d3dCaps.PrimitiveMiscCaps, D3DPMISCCAPS_CULLNONE); 696 CHECK_CAP(d3dCaps [all...] |
H A D | D3DContext.cpp | 584 D3DCAPS9 d3dCaps; local 590 devType, &d3dCaps))) 598 !(d3dCaps.PresentationIntervals & D3DPRESENT_INTERVAL_IMMEDIATE)) 608 if (d3dCaps.DevCaps & D3DDEVCAPS_HWTRANSFORMANDLIGHT) {
|
Completed in 32 milliseconds