Skip to content

Commit

Permalink
[d3d11] Fix missing argument reference
Browse files Browse the repository at this point in the history
Signed-off-by: Vasiliy Stelmachenok <ventureo@cachyos.org>
  • Loading branch information
ventureoo committed Jan 20, 2025
1 parent c52a68a commit 9153477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/d3d11/d3d11_view.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace dxvk {
* \param [in] b Second view to check
* \returns \c true if the views overlap
*/
inline bool CheckViewOverlap(const D3D11_VK_VIEW_INFO& a, const D3D11_VK_VIEW_INFO b) {
inline bool CheckViewOverlap(const D3D11_VK_VIEW_INFO& a, const D3D11_VK_VIEW_INFO& b) {
if (likely(a.pResource != b.pResource))
return false;

Expand All @@ -78,4 +78,4 @@ namespace dxvk {
return a && b && CheckViewOverlap(a->GetViewInfo(), b->GetViewInfo());
}

}
}

0 comments on commit 9153477

Please sign in to comment.