mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d11] Forward DiscardResource calls to backend for images
This commit is contained in:
parent
9b5499caf2
commit
3aeedb9c98
1 changed files with 7 additions and 1 deletions
|
@ -127,7 +127,6 @@ namespace dxvk {
|
||||||
if (!pResource)
|
if (!pResource)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// We don't support the Discard API for images
|
|
||||||
D3D11_RESOURCE_DIMENSION resType = D3D11_RESOURCE_DIMENSION_UNKNOWN;
|
D3D11_RESOURCE_DIMENSION resType = D3D11_RESOURCE_DIMENSION_UNKNOWN;
|
||||||
pResource->GetType(&resType);
|
pResource->GetType(&resType);
|
||||||
|
|
||||||
|
@ -135,9 +134,16 @@ namespace dxvk {
|
||||||
DiscardBuffer(pResource);
|
DiscardBuffer(pResource);
|
||||||
} else {
|
} else {
|
||||||
auto texture = GetCommonTexture(pResource);
|
auto texture = GetCommonTexture(pResource);
|
||||||
|
auto image = texture->GetImage();
|
||||||
|
|
||||||
for (uint32_t i = 0; i < texture->CountSubresources(); i++)
|
for (uint32_t i = 0; i < texture->CountSubresources(); i++)
|
||||||
DiscardTexture(pResource, i);
|
DiscardTexture(pResource, i);
|
||||||
|
|
||||||
|
if (image) {
|
||||||
|
EmitCs([cImage = std::move(image)] (DxvkContext* ctx) {
|
||||||
|
ctx->discardImage(cImage);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue