mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 02:52:10 +01:00
[dxvk] Fixed 32-bit compilation issue, derp
This commit is contained in:
parent
e8c98eac95
commit
ce020e5bc9
@ -1645,12 +1645,12 @@ namespace dxvk {
|
||||
|
||||
|
||||
bool DxvkContext::validateComputeState() {
|
||||
return m_cpActivePipeline != nullptr;
|
||||
return m_cpActivePipeline != VK_NULL_HANDLE;
|
||||
}
|
||||
|
||||
|
||||
bool DxvkContext::validateGraphicsState() {
|
||||
if (m_gpActivePipeline == nullptr)
|
||||
if (m_gpActivePipeline == VK_NULL_HANDLE)
|
||||
return false;
|
||||
|
||||
if (!m_flags.test(DxvkContextFlag::GpRenderPassBound))
|
||||
|
Loading…
x
Reference in New Issue
Block a user