In this part is interesting to return an error or print if size is too big: ``` // data size too big? if ((size_t)data.size > sizeof(SokolRenderCommand::apply_uniforms.buf)) { return; } ``` Can be hard to debug!
In this part is interesting to return an error or print if size is too big:
Can be hard to debug!