mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-04-06 00:57:40 +02:00
[d3d9] Fix OptimizeLayout with feedback loop usage.
We kind of need dcc on GFX8/9.
This commit is contained in:
parent
cd21cd7fa3
commit
bc31ebe151
@ -485,8 +485,10 @@ namespace dxvk {
|
|||||||
|
|
||||||
// Filter out unnecessary flags. Transfer operations
|
// Filter out unnecessary flags. Transfer operations
|
||||||
// are handled by the backend in a transparent manner.
|
// are handled by the backend in a transparent manner.
|
||||||
|
// Feedback loops are handled by hazard tracking.
|
||||||
Usage &= ~(VK_IMAGE_USAGE_TRANSFER_DST_BIT
|
Usage &= ~(VK_IMAGE_USAGE_TRANSFER_DST_BIT
|
||||||
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT);
|
| VK_IMAGE_USAGE_TRANSFER_SRC_BIT
|
||||||
|
| VK_IMAGE_USAGE_ATTACHMENT_FEEDBACK_LOOP_BIT_EXT);
|
||||||
|
|
||||||
// Ignore sampled bit in case the image was created with
|
// Ignore sampled bit in case the image was created with
|
||||||
// an image flag that only allows attachment usage
|
// an image flag that only allows attachment usage
|
||||||
|
Loading…
x
Reference in New Issue
Block a user