gl_rasterizer: Reset normal map flag each draw (#6636)
* Fixes normal maps leaking draws
This commit is contained in:
parent
eb118b2a4c
commit
6b8a06e7b4
@ -487,6 +487,7 @@ bool RasterizerOpenGL::Draw(bool accelerate, bool is_indexed) {
|
||||
}
|
||||
|
||||
res_cache.InvalidateFramebuffer(framebuffer);
|
||||
use_custom_normal = false;
|
||||
|
||||
return succeeded;
|
||||
}
|
||||
@ -581,7 +582,7 @@ void RasterizerOpenGL::BindTextureCube(const Pica::TexturingRegs::FullTextureCon
|
||||
}
|
||||
|
||||
void RasterizerOpenGL::BindMaterial(u32 texture_index, Surface& surface) {
|
||||
if (!surface.IsCustom() || texture_index != 0) {
|
||||
if (!surface.IsCustom()) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -599,11 +600,6 @@ void RasterizerOpenGL::BindMaterial(u32 texture_index, Surface& surface) {
|
||||
}
|
||||
bind_texture(TextureUnits::TextureNormalMap, surface.Handle(2), sampler);
|
||||
use_custom_normal = true;
|
||||
} else {
|
||||
if (use_custom_normal) {
|
||||
bind_texture(TextureUnits::TextureNormalMap, 0, 0);
|
||||
}
|
||||
use_custom_normal = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user