mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d11] Fix missing argument reference
Signed-off-by: Vasiliy Stelmachenok <ventureo@cachyos.org>
This commit is contained in:
parent
c52a68a5be
commit
9153477bbf
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ namespace dxvk {
|
||||||
* \param [in] b Second view to check
|
* \param [in] b Second view to check
|
||||||
* \returns \c true if the views overlap
|
* \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))
|
if (likely(a.pResource != b.pResource))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -78,4 +78,4 @@ namespace dxvk {
|
||||||
return a && b && CheckViewOverlap(a->GetViewInfo(), b->GetViewInfo());
|
return a && b && CheckViewOverlap(a->GetViewInfo(), b->GetViewInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue