Skip to content

Commit

Permalink
Merge pull request ddnet#9158 from Jupeyy/pr_unblock_less
Browse files Browse the repository at this point in the history
Don't block drivers before & equal to 2.0.137.
  • Loading branch information
Robyt3 authored Oct 20, 2024
2 parents baddafe + efc1d2d commit d923e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/client/backend/vulkan/backend_vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3584,7 +3584,7 @@ class CCommandProcessorFragment_Vulkan : public CCommandProcessorFragment_GLBase
auto Minor = (DriverVersion >> 12) & 0x3ff;
auto Patch = DriverVersion & 0xfff;

return Major == 2 && Minor == 0 && Patch > 116 && Patch < 220 && ((ApiMajor <= 1 && ApiMinor < 3) || (ApiMajor <= 1 && ApiMinor == 3 && ApiPatch < 206));
return Major == 2 && Minor == 0 && Patch > 137 && Patch < 220 && ((ApiMajor <= 1 && ApiMinor < 3) || (ApiMajor <= 1 && ApiMinor == 3 && ApiPatch < 206));
}
#endif
return false;
Expand Down

0 comments on commit d923e58

Please sign in to comment.