Skip to content

Commit

Permalink
Add missing constructor for VkClearDepthStencilValue
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Jun 23, 2024
1 parent 10fa1f3 commit f5ec8f7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,13 @@ public VkRect2D(VkOffset2D offset, VkExtent2D extent)
this.extent = extent;
}
}

partial struct VkClearDepthStencilValue
{
public VkClearDepthStencilValue(float depth, uint stencil)
{
this.depth = depth;
this.stencil = stencil;
}
}
}

0 comments on commit f5ec8f7

Please sign in to comment.