diff options
author | Simon Ser <contact@emersion.fr> | 2021-04-21 12:04:10 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-04-22 15:44:49 +0200 |
commit | c314920a3d2bcb347d9ae491a678d8349f32ae8d (patch) | |
tree | b3eddebb01b2d1cc228c9af0d4d1ababdd0a5345 /render/gles2 | |
parent | 8ca2b4cf49055eabcd2499bf3811d356d769bded (diff) |
render: remove NULL checks in wlr_texture_impl.destroy
The NULL check already exists in wlr_texture_destroy, no need to
duplicate it in each impl
Diffstat (limited to 'render/gles2')
-rw-r--r-- | render/gles2/texture.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/render/gles2/texture.c b/render/gles2/texture.c index 2b08dd50..7e2b01ae 100644 --- a/render/gles2/texture.c +++ b/render/gles2/texture.c @@ -99,10 +99,6 @@ static bool gles2_texture_write_pixels(struct wlr_texture *wlr_texture, } static void gles2_texture_destroy(struct wlr_texture *wlr_texture) { - if (wlr_texture == NULL) { - return; - } - struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture); wl_list_remove(&texture->link); |