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
3a29a4e89f
commit
9d328b77cc
1 changed files with 7 additions and 1 deletions
|
@ -127,7 +127,6 @@ namespace dxvk {
|
|||
if (!pResource)
|
||||
return;
|
||||
|
||||
// We don't support the Discard API for images
|
||||
D3D11_RESOURCE_DIMENSION resType = D3D11_RESOURCE_DIMENSION_UNKNOWN;
|
||||
pResource->GetType(&resType);
|
||||
|
||||
|
@ -135,9 +134,16 @@ namespace dxvk {
|
|||
DiscardBuffer(pResource);
|
||||
} else {
|
||||
auto texture = GetCommonTexture(pResource);
|
||||
auto image = texture->GetImage();
|
||||
|
||||
for (uint32_t i = 0; i < texture->CountSubresources(); i++)
|
||||
DiscardTexture(pResource, i);
|
||||
|
||||
if (image) {
|
||||
EmitCs([cImage = std::move(image)] (DxvkContext* ctx) {
|
||||
ctx->discardImage(cImage);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue