Merge pull request #1263 from daleglass-overte/remove-checklightid-assert
Some checks failed
Master API-docs CI Build and Deploy / Build and deploy API-docs (push) Has been cancelled
Master Doxygen CI Build and Deploy / Build and deploy Doxygen documentation (push) Has been cancelled

Remove an assert referencing checkLightId, which seems not to exist anywhere
This commit is contained in:
Dale Glass 2024-12-01 11:15:34 +01:00 committed by GitHub
commit 8f1c08a02e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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));
}