mirror of https://github.com/PCSX2/pcsx2.git
gsdx ogl: brain hang in the middle of the line
Only impact if bilinear is forced
This commit is contained in:
parent
5b72fab2e4
commit
354aa6831b
|
@ -829,10 +829,10 @@ void GSRendererOGL::EmulateTextureSampler(const GSTextureCache::Source* tex)
|
|||
bilinear &= m_vt.IsLinear();
|
||||
} else if (psm.depth) {
|
||||
// Use Integral scaling
|
||||
m_ps_sel.depth_fmt = (tex->m_texture->GetType() != GSTexture::DepthStencil) ? 3 :
|
||||
m_ps_sel.depth_fmt = 3;
|
||||
|
||||
// Don't force interpolation on depth format
|
||||
bilinear &= m_vt.IsLinear();
|
||||
// Don't force interpolation on depth format
|
||||
bilinear &= m_vt.IsLinear();
|
||||
}
|
||||
|
||||
} else if (tex->m_palette) {
|
||||
|
|
Loading…
Reference in New Issue