mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 06:31:48 +00:00
updated Intel driver version check since the fix is out
This commit is contained in:
parent
7c217a313d
commit
26bfe007c1
1 changed files with 5 additions and 2 deletions
|
@ -3341,11 +3341,14 @@ namespace RHI
|
||||||
// with direct descriptor heap indexing on Intel,
|
// with direct descriptor heap indexing on Intel,
|
||||||
// *Texture*.GetDimensions() calls return incorrect values
|
// *Texture*.GetDimensions() calls return incorrect values
|
||||||
// UMD version 31.0.101.5382 (0x001F000000651506) is still broken
|
// UMD version 31.0.101.5382 (0x001F000000651506) is still broken
|
||||||
|
// UMD version 31.0.101.5444 (0X001F000000651544) is the first fixed version
|
||||||
if(initDesc.directDescriptorHeapIndexing &&
|
if(initDesc.directDescriptorHeapIndexing &&
|
||||||
rhi.vendorId == VENDORID_INTEL &&
|
rhi.vendorId == VENDORID_INTEL &&
|
||||||
rhi.umdVersion <= 0x001F000000651506)
|
rhi.umdVersion < 0X001F000000651544)
|
||||||
{
|
{
|
||||||
ri.Error(ERR_FATAL, "This Intel driver is known to have incorrect behavior.\n");
|
ri.Error(ERR_FATAL,
|
||||||
|
"This Intel graphics driver is known to have incorrect behavior.\n"
|
||||||
|
"Version 31.0.101.5444 (April 19, 2024) or newer is required.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(RHI_ENABLE_AFTERMATH)
|
#if defined(RHI_ENABLE_AFTERMATH)
|
||||||
|
|
Loading…
Reference in a new issue