1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-02 19:24:12 +01:00

[dxvk] Fixed MSAA issue in render pass info

This commit is contained in:
Philip Rebohle 2018-02-07 13:14:52 +01:00
parent 61ce7022e2
commit 0f13914ff0
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -7,7 +7,7 @@ namespace dxvk {
bool DxvkRenderPassFormat::matchesFormat(const DxvkRenderPassFormat& other) const {
bool equal = m_samples == other.m_samples;
equal = m_depth.format == other.m_depth.format
equal &= m_depth.format == other.m_depth.format
&& m_depth.initialLayout == other.m_depth.initialLayout
&& m_depth.finalLayout == other.m_depth.finalLayout
&& m_depth.renderLayout == other.m_depth.renderLayout;