Revert "Fix T52855: Eevee: viewport artifacts"

This reverts commit 803c757c2b.
This commit is contained in:
Clément Foucault 2017-09-21 19:43:53 +02:00
parent 803c757c2b
commit d97f52f015
Notes: blender-bot 2023-02-14 08:59:10 +01:00
Referenced by issue #52855, Eevee: viewport artifacts
1 changed files with 7 additions and 4 deletions

View File

@ -364,6 +364,8 @@ static struct DRWResourceState {
GPUTexture **bound_texs;
bool *bound_tex_slots;
int bind_tex_inc;
int bind_ubo_inc;
} RST = {NULL};
@ -1837,10 +1839,11 @@ static void bind_texture(GPUTexture *tex)
int bind_num = GPU_texture_bound_number(tex);
if (bind_num == -1) {
for (int i = 0; i < GPU_max_textures(); ++i) {
if (RST.bound_tex_slots[i] == false) {
GPU_texture_bind(tex, i);
RST.bound_texs[i] = tex;
RST.bound_tex_slots[i] = true;
RST.bind_tex_inc = (RST.bind_tex_inc + 1) % GPU_max_textures();
if (RST.bound_tex_slots[RST.bind_tex_inc] == false) {
GPU_texture_bind(tex, RST.bind_tex_inc);
RST.bound_texs[RST.bind_tex_inc] = tex;
RST.bound_tex_slots[RST.bind_tex_inc] = true;
return;
}
}