mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:19:58 +00:00
vk_texture_cache: Do not reinterpret DepthStencil source images
Fixes star pointer interactions in Super Mario Galaxy on some drivers, notably Nvidia. Co-Authored-By: Fernando S. <1731197+fernandos27@users.noreply.github.com>
This commit is contained in:
parent
cb86e7941b
commit
4d840aa903
1 changed files with 0 additions and 5 deletions
|
@ -781,11 +781,6 @@ bool TextureCacheRuntime::ShouldReinterpret(Image& dst, Image& src) {
|
||||||
!device.IsExtShaderStencilExportSupported()) {
|
!device.IsExtShaderStencilExportSupported()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (VideoCore::Surface::GetFormatType(src.info.format) ==
|
|
||||||
VideoCore::Surface::SurfaceType::DepthStencil &&
|
|
||||||
!device.IsExtShaderStencilExportSupported()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
if (dst.info.format == PixelFormat::D32_FLOAT_S8_UINT ||
|
if (dst.info.format == PixelFormat::D32_FLOAT_S8_UINT ||
|
||||||
src.info.format == PixelFormat::D32_FLOAT_S8_UINT) {
|
src.info.format == PixelFormat::D32_FLOAT_S8_UINT) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue