Graphics/Material: Fix IsDepthClampEnabled method

This commit is contained in:
Jérôme Leclercq
2021-07-13 12:04:19 +02:00
parent 0777badbe0
commit 99876d935d

View File

@@ -552,7 +552,7 @@ namespace Nz
*/ */
inline bool Material::IsDepthClampEnabled() const inline bool Material::IsDepthClampEnabled() const
{ {
return false; return m_pipelineInfo.depthClamp;
} }
/*! /*!