[d3d11] Fix missing argument reference

Signed-off-by: Vasiliy Stelmachenok <ventureo@cachyos.org>
This commit is contained in:
Vasiliy Stelmachenok 2025-01-20 19:26:31 +03:00
parent c52a68a5be
commit 9153477bbf
No known key found for this signature in database
GPG key ID: C335EA290EE4C75B

View file

@ -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;