mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wined3d: Correct the srgb reading check.
This commit is contained in:
parent
b6ecb56eef
commit
9d9a640127
1 changed files with 6 additions and 2 deletions
|
@ -1918,7 +1918,11 @@ static HRESULT WINAPI IWineD3DImpl_CheckDeviceFormat(IWineD3D *iface, UINT Adapt
|
|||
}
|
||||
|
||||
/* Check for supported sRGB formats (Texture loading and framebuffer) */
|
||||
if (GL_SUPPORT(EXT_TEXTURE_SRGB) && (Usage & WINED3DUSAGE_QUERY_SRGBREAD)) {
|
||||
if (Usage & WINED3DUSAGE_QUERY_SRGBREAD) {
|
||||
if(!GL_SUPPORT(EXT_TEXTURE_SRGB)) {
|
||||
TRACE_(d3d_caps)("[FAILED] GL_EXT_texture_sRGB not supported\n");
|
||||
}
|
||||
|
||||
switch (CheckFormat) {
|
||||
case WINED3DFMT_A8R8G8B8:
|
||||
case WINED3DFMT_X8R8G8B8:
|
||||
|
@ -1931,7 +1935,7 @@ static HRESULT WINAPI IWineD3DImpl_CheckDeviceFormat(IWineD3D *iface, UINT Adapt
|
|||
case WINED3DFMT_DXT4:
|
||||
case WINED3DFMT_DXT5:
|
||||
TRACE_(d3d_caps)("[OK]\n");
|
||||
return WINED3D_OK;
|
||||
break; /* Continue with checking other flags */
|
||||
|
||||
default:
|
||||
TRACE_(d3d_caps)("[FAILED] Gamma texture format %s not supported.\n", debug_d3dformat(CheckFormat));
|
||||
|
|
Loading…
Reference in a new issue