summaryrefslogtreecommitdiffstats
path: root/drivers/gles3
diff options
context:
space:
mode:
authorOrion Lawlor <lawlor@alaska.edu>2024-08-19 18:15:08 -0800
committerRémi Verschelde <rverschelde@gmail.com>2024-09-16 17:09:12 +0200
commitecbb9a9c6ae88c9390248108181d971f6d037fc1 (patch)
tree345a66289a928342f59ca4d4c303f2e032ac39b5 /drivers/gles3
parentd0c4f19dd2bdd7d2d27096bb2b622dd51d569bf1 (diff)
downloadredot-engine-ecbb9a9c6ae88c9390248108181d971f6d037fc1.tar.gz
Fix GLES3 crash with Mesh surface with exactly 65536 vertices
Fixes #95837. (cherry picked from commit bde165ccb3dc26c8414ae6e4ab659014d9428ad0)
Diffstat (limited to 'drivers/gles3')
-rw-r--r--drivers/gles3/storage/mesh_storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gles3/storage/mesh_storage.cpp b/drivers/gles3/storage/mesh_storage.cpp
index d8a5b960b8..89466160c6 100644
--- a/drivers/gles3/storage/mesh_storage.cpp
+++ b/drivers/gles3/storage/mesh_storage.cpp
@@ -301,7 +301,7 @@ void MeshStorage::mesh_add_surface(RID p_mesh, const RS::SurfaceData &p_surface)
Vector<uint8_t> ir = new_surface.index_data;
wr = wf_indices.ptrw();
- if (new_surface.vertex_count < (1 << 16)) {
+ if (new_surface.vertex_count <= 65536) {
// Read 16 bit indices.
const uint16_t *src_idx = (const uint16_t *)ir.ptr();
for (uint32_t i = 0; i + 5 < wf_index_count; i += 6) {