mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d11] Skip empty draws
Watch Dogs 2 likes to do this with graphics UAVs bound, which introduces quite a bit of unnecessary GPU synchronization.
This commit is contained in:
parent
11dc0e7ce8
commit
b35e69b467
1 changed files with 15 additions and 0 deletions
|
@ -1037,6 +1037,9 @@ namespace dxvk {
|
|||
UINT StartVertexLocation) {
|
||||
D3D10DeviceLock lock = LockContext();
|
||||
|
||||
if (unlikely(!VertexCount))
|
||||
return;
|
||||
|
||||
VkDrawIndirectCommand draw = { };
|
||||
draw.vertexCount = VertexCount;
|
||||
draw.instanceCount = 1u;
|
||||
|
@ -1054,6 +1057,9 @@ namespace dxvk {
|
|||
INT BaseVertexLocation) {
|
||||
D3D10DeviceLock lock = LockContext();
|
||||
|
||||
if (unlikely(!IndexCount))
|
||||
return;
|
||||
|
||||
VkDrawIndexedIndirectCommand draw = { };
|
||||
draw.indexCount = IndexCount;
|
||||
draw.instanceCount = 1u;
|
||||
|
@ -1073,6 +1079,9 @@ namespace dxvk {
|
|||
UINT StartInstanceLocation) {
|
||||
D3D10DeviceLock lock = LockContext();
|
||||
|
||||
if (unlikely(!VertexCountPerInstance || !InstanceCount))
|
||||
return;
|
||||
|
||||
VkDrawIndirectCommand draw = { };
|
||||
draw.vertexCount = VertexCountPerInstance;
|
||||
draw.instanceCount = InstanceCount;
|
||||
|
@ -1092,6 +1101,9 @@ namespace dxvk {
|
|||
UINT StartInstanceLocation) {
|
||||
D3D10DeviceLock lock = LockContext();
|
||||
|
||||
if (unlikely(!IndexCountPerInstance || !InstanceCount))
|
||||
return;
|
||||
|
||||
VkDrawIndexedIndirectCommand draw = { };
|
||||
draw.indexCount = IndexCountPerInstance;
|
||||
draw.instanceCount = InstanceCount;
|
||||
|
@ -1186,6 +1198,9 @@ namespace dxvk {
|
|||
UINT ThreadGroupCountZ) {
|
||||
D3D10DeviceLock lock = LockContext();
|
||||
|
||||
if (unlikely(!ThreadGroupCountX || !ThreadGroupCountY || !ThreadGroupCountZ))
|
||||
return;
|
||||
|
||||
if (unlikely(HasDirtyComputeBindings()))
|
||||
ApplyDirtyComputeBindings();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue