Remove an assert referencing checkLightId, which seems not to exist anywhere.

This commit is contained in:
Dale Glass 2024-12-01 09:45:45 +01:00
parent 2c929360ff
commit 639cad4beb

View file

@ -389,8 +389,6 @@ void LightStage::updateLightArrayBuffer(Index lightId) {
_lightArrayBuffer = std::make_shared<gpu::Buffer>(lightSize);
}
assert(checkLightId(lightId));
if (lightId > (Index)_lightArrayBuffer->getNumTypedElements<graphics::Light::LightSchema>()) {
_lightArrayBuffer->resize(lightSize * (lightId + 10));
}