Revert "glsl: fix resizing of the uniform remap table"

This reverts commit e0aa0a839f.

Instead we fix it correctly in the following patch.

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4623>
This commit is contained in:
Timothy Arceri 2020-03-05 14:51:20 +11:00 committed by Marge Bot
parent 723edf859f
commit 5442712c6d
1 changed files with 4 additions and 8 deletions

View File

@ -116,20 +116,16 @@ nir_setup_uniform_remap_tables(struct gl_context *ctx,
unsigned location =
link_util_find_empty_block(prog, &prog->data->UniformStorage[i]);
if (location == -1 || location + entries >= prog->NumUniformRemapTable) {
unsigned new_entries = entries;
if (location == -1)
location = prog->NumUniformRemapTable;
else
new_entries = location - prog->NumUniformRemapTable + entries;
if (location == -1) {
location = prog->NumUniformRemapTable;
/* resize remap table to fit new entries */
prog->UniformRemapTable =
reralloc(prog,
prog->UniformRemapTable,
struct gl_uniform_storage *,
prog->NumUniformRemapTable + new_entries);
prog->NumUniformRemapTable += new_entries;
prog->NumUniformRemapTable + entries);
prog->NumUniformRemapTable += entries;
}
/* set the base location in remap table for the uniform */