drawogl: increase texture hashtable size (emirage/robotadv were crashing with opengl renderer)

This commit is contained in:
hap 2024-03-20 12:52:45 +01:00
parent 3a83fc2532
commit c5662d1fff

View file

@ -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();