mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 14:47:33 +01:00
Texture Cache: Always copy on NVIDIA.
This commit is contained in:
parent
8532849439
commit
0902119302
@ -779,6 +779,11 @@ 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 New Issue
Block a user