Merge pull request #72474 from clayjohn/GL-leaky-tex
Avoid leaking texture->tex_id when clearing render targets
This commit is contained in:
commit
92f3725da8
1 changed files with 4 additions and 0 deletions
|
@ -1822,6 +1822,10 @@ void TextureStorage::_clear_render_target(RenderTarget *rt) {
|
|||
rt->overridden.color = RID();
|
||||
} else if (rt->color) {
|
||||
glDeleteTextures(1, &rt->color);
|
||||
if (rt->texture.is_valid()) {
|
||||
Texture *tex = get_texture(rt->texture);
|
||||
tex->tex_id = 0;
|
||||
}
|
||||
}
|
||||
rt->color = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue