mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 02:52:10 +01:00
[d3d9] Add unlikelies to rare vendor hacks
This commit is contained in:
parent
1ea79cf136
commit
ea4aa87336
@ -3666,19 +3666,19 @@ namespace dxvk {
|
||||
constexpr DWORD Fetch4Enabled = MAKEFOURCC('G', 'E', 'T', '4');
|
||||
constexpr DWORD Fetch4Disabled = MAKEFOURCC('G', 'E', 'T', '1');
|
||||
|
||||
if (Type == D3DSAMP_MIPMAPLODBIAS) {
|
||||
if (Value == Fetch4Enabled) {
|
||||
if (unlikely(Type == D3DSAMP_MIPMAPLODBIAS)) {
|
||||
if (unlikely(Value == Fetch4Enabled)) {
|
||||
m_fetch4Enabled |= 1u << StateSampler;
|
||||
if (state[StateSampler][D3DSAMP_MAGFILTER] == D3DTEXF_POINT)
|
||||
m_fetch4 |= 1u << StateSampler;
|
||||
}
|
||||
else if (Value == Fetch4Disabled) {
|
||||
else if (unlikely(Value == Fetch4Disabled)) {
|
||||
m_fetch4Enabled &= ~(1u << StateSampler);
|
||||
m_fetch4 &= ~(1u << StateSampler);
|
||||
}
|
||||
}
|
||||
|
||||
if (Type == D3DSAMP_MAGFILTER && m_fetch4Enabled & (1u << StateSampler)) {
|
||||
if (unlikely(Type == D3DSAMP_MAGFILTER && m_fetch4Enabled & (1u << StateSampler))) {
|
||||
if (Value == D3DTEXF_POINT)
|
||||
m_fetch4 |= 1u << StateSampler;
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user