From c5662d1fff23747e7a966c9c19090561c2658ba4 Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 20 Mar 2024 12:52:45 +0100 Subject: drawogl: increase texture hashtable size (emirage/robotadv were crashing with opengl renderer) --- src/osd/modules/render/drawogl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osd/modules/render/drawogl.cpp b/src/osd/modules/render/drawogl.cpp index bc7fcf9a959..f9f76946bf4 100644 --- a/src/osd/modules/render/drawogl.cpp +++ b/src/osd/modules/render/drawogl.cpp @@ -316,8 +316,8 @@ public: #endif private: - static const uint32_t HASH_SIZE = ((1 << 10) + 1); - static const uint32_t OVERFLOW_SIZE = (1 << 10); + static const uint32_t HASH_SIZE = ((1 << 18) + 1); + static const uint32_t OVERFLOW_SIZE = (1 << 12); void destroy_all_textures(); -- cgit v1.2.3