mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
wined3d: Only report 16 bit float declaration types as supported if we support them.
This commit is contained in:
parent
82245cb5d7
commit
3ac2271f5c
1 changed files with 4 additions and 2 deletions
|
@ -2301,10 +2301,12 @@ static HRESULT WINAPI IWineD3DImpl_GetDeviceCaps(IWineD3D *iface, UINT Adapter,
|
||||||
*pCaps->DeclTypes = WINED3DDTCAPS_UBYTE4 |
|
*pCaps->DeclTypes = WINED3DDTCAPS_UBYTE4 |
|
||||||
WINED3DDTCAPS_UBYTE4N |
|
WINED3DDTCAPS_UBYTE4N |
|
||||||
WINED3DDTCAPS_SHORT2N |
|
WINED3DDTCAPS_SHORT2N |
|
||||||
WINED3DDTCAPS_SHORT4N |
|
WINED3DDTCAPS_SHORT4N;
|
||||||
|
if (GL_SUPPORT(NV_HALF_FLOAT)) {
|
||||||
|
*pCaps->DeclTypes |=
|
||||||
WINED3DDTCAPS_FLOAT16_2 |
|
WINED3DDTCAPS_FLOAT16_2 |
|
||||||
WINED3DDTCAPS_FLOAT16_4;
|
WINED3DDTCAPS_FLOAT16_4;
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
*pCaps->DeclTypes = 0;
|
*pCaps->DeclTypes = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue