mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #1278 from PCSX2/gsdx-EE-read-depth-support
gsdx ogl: allow to read the depth buffer
This commit is contained in:
commit
da9577076c
|
@ -719,6 +719,14 @@ void GSTextureCache::InvalidateLocalMem(GSOffset* off, const GSVector4i& r)
|
||||||
// No depth handling please.
|
// No depth handling please.
|
||||||
if (psm == PSM_PSMZ32 || psm == PSM_PSMZ24 || psm == PSM_PSMZ16 || psm == PSM_PSMZ16S) {
|
if (psm == PSM_PSMZ32 || psm == PSM_PSMZ24 || psm == PSM_PSMZ16 || psm == PSM_PSMZ16S) {
|
||||||
GL_INS("ERROR: InvalidateLocalMem depth format isn't supported");
|
GL_INS("ERROR: InvalidateLocalMem depth format isn't supported");
|
||||||
|
if (m_can_convert_depth) {
|
||||||
|
for(auto t : m_dst[DepthStencil]) {
|
||||||
|
if(GSUtil::HasSharedBits(bp, psm, t->m_TEX0.TBP0, t->m_TEX0.PSM)) {
|
||||||
|
// Read the full depth buffer for easy testing
|
||||||
|
Read(t, t->m_valid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue