mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-15 16:29:16 +01:00
parent
bb0772eb8d
commit
bb2e88ee06
@ -1066,8 +1066,13 @@ namespace dxvk {
|
|||||||
cClearValue);
|
cClearValue);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (unlikely(rtView == nullptr))
|
if (unlikely(rtView == nullptr)) {
|
||||||
Logger::err(str::format("D3D9DeviceEx::ColorFill: Unsupported format ", dstTextureInfo->Desc()->Format));
|
const D3D9Format format = dstTextureInfo->Desc()->Format;
|
||||||
|
if (format != D3D9Format::NULL_FORMAT)
|
||||||
|
Logger::err(str::format("D3D9DeviceEx::ColorFill: Unsupported format ", format));
|
||||||
|
|
||||||
|
return D3D_OK;
|
||||||
|
}
|
||||||
|
|
||||||
EmitCs([
|
EmitCs([
|
||||||
cImageView = rtView,
|
cImageView = rtView,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user