18 Jul
2023
18 Jul
'23
1:37 p.m.
```diff - d3d12_desc_copy(&dst[dst_idx], &src[src_idx], device); + d3d12_desc_copy(&dst[dst_idx], &src[src_idx], dst_heap, device); ```
Do we really need to pass "device" around if we're already passing "dst_heap"? As you mention in the commit message, we don't end up accessing "device" in a lot of places any more, and it seems like we could use "dst_heap->device" when we do. -- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/272#note_39298