mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-05 13:20:31 +00:00
Fix for loop in D3D Renderer ApplyState function
This commit is contained in:
parent
1afb0a134d
commit
1b685bcde9
@ -927,7 +927,7 @@ void Renderer::ApplyState()
|
|||||||
D3D::stateman->PushDepthState(s_gx_state_cache.Get(s_gx_state.zmode));
|
D3D::stateman->PushDepthState(s_gx_state_cache.Get(s_gx_state.zmode));
|
||||||
D3D::stateman->PushRasterizerState(s_gx_state_cache.Get(s_gx_state.raster));
|
D3D::stateman->PushRasterizerState(s_gx_state_cache.Get(s_gx_state.raster));
|
||||||
|
|
||||||
for (size_t stage = 0; s_gx_state.samplers.size(); stage++)
|
for (size_t stage = 0; stage < s_gx_state.samplers.size(); stage++)
|
||||||
{
|
{
|
||||||
// TODO: cache SamplerState directly, not d3d object
|
// TODO: cache SamplerState directly, not d3d object
|
||||||
s_gx_state.samplers[stage].max_anisotropy = UINT64_C(1) << g_ActiveConfig.iMaxAnisotropy;
|
s_gx_state.samplers[stage].max_anisotropy = UINT64_C(1) << g_ActiveConfig.iMaxAnisotropy;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user