Skip to content

Commit

Permalink
fix glMapBufferRange return null when r_index + last_item_index > max…
Browse files Browse the repository at this point in the history
…_instances
  • Loading branch information
jsjtxietian committed Aug 27, 2023
1 parent 6f90b23 commit d48b95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gles3/rasterizer_canvas_gles3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1451,7 +1451,7 @@ void RasterizerCanvasGLES3::_render_batch(Light *p_lights, uint32_t p_index) {
void RasterizerCanvasGLES3::_add_to_batch(uint32_t &r_index, bool &r_batch_broken) {
state.canvas_instance_batches[state.current_batch_index].instance_count++;
r_index++;
if (r_index >= data.max_instances_per_buffer) {
if (r_index + state.last_item_index >= data.max_instances_per_buffer) {
// Copy over all data needed for rendering right away
// then go back to recording item commands.
glBindBuffer(GL_ARRAY_BUFFER, state.canvas_instance_data_buffers[state.current_data_buffer_index].instance_buffers[state.current_instance_buffer_index]);
Expand Down

0 comments on commit d48b95a

Please sign in to comment.