File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -614,7 +614,7 @@ struct SPhysicalDeviceLimits
614
614
if (maxPushConstantsSize > _rhs.maxPushConstantsSize ) return false ;
615
615
if (maxMemoryAllocationCount > _rhs.maxMemoryAllocationCount ) return false ;
616
616
if (maxSamplerAllocationCount > _rhs.maxSamplerAllocationCount ) return false ;
617
- if (bufferImageGranularity > _rhs.bufferImageGranularity ) return false ;
617
+ if (bufferImageGranularity < _rhs.bufferImageGranularity ) return false ;
618
618
if (maxPerStageDescriptorSamplers > _rhs.maxPerStageDescriptorSamplers ) return false ;
619
619
if (maxPerStageDescriptorUBOs > _rhs.maxPerStageDescriptorUBOs ) return false ;
620
620
if (maxPerStageDescriptorSSBOs > _rhs.maxPerStageDescriptorSSBOs ) return false ;
@@ -770,7 +770,7 @@ struct SPhysicalDeviceLimits
770
770
if (maxBufferSize > _rhs.maxBufferSize ) return false ;
771
771
if (primitiveOverestimationSize > _rhs.primitiveOverestimationSize ) return false ;
772
772
if (maxExtraPrimitiveOverestimationSize > _rhs.maxExtraPrimitiveOverestimationSize ) return false ;
773
- if (extraPrimitiveOverestimationSizeGranularity > _rhs.extraPrimitiveOverestimationSizeGranularity ) return false ;
773
+ if (extraPrimitiveOverestimationSizeGranularity < _rhs.extraPrimitiveOverestimationSizeGranularity ) return false ;
774
774
if (primitiveUnderestimation && !_rhs.primitiveUnderestimation ) return false ;
775
775
if (conservativePointAndLineRasterization && !_rhs.conservativePointAndLineRasterization ) return false ;
776
776
if (degenerateTrianglesRasterized && !_rhs.degenerateTrianglesRasterized ) return false ;
You can’t perform that action at this time.
0 commit comments