mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Fix build error with -O2
../render/gles2/renderer.c: In function ‘gles2_render_texture_with_matrix’: ../render/gles2/renderer.c:140:2: error: ‘target’ may be used uninitialized in this function [-Werror=maybe-uninitialized] glBindTexture(target, tex_id); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../render/gles2/renderer.c:145:2: error: ‘prog’ may be used uninitialized in this function [-Werror=maybe-uninitialized] glUseProgram(prog);
This commit is contained in:
parent
212d957c69
commit
c9ed6fed59
1 changed files with 2 additions and 2 deletions
|
@ -111,8 +111,8 @@ static bool gles2_render_texture_with_matrix(struct wlr_renderer *wlr_renderer,
|
||||||
struct wlr_gles2_texture *texture =
|
struct wlr_gles2_texture *texture =
|
||||||
gles2_get_texture_in_context(wlr_texture);
|
gles2_get_texture_in_context(wlr_texture);
|
||||||
|
|
||||||
GLuint prog;
|
GLuint prog = 0;
|
||||||
GLenum target;
|
GLenum target = 0;
|
||||||
switch (texture->type) {
|
switch (texture->type) {
|
||||||
case WLR_GLES2_TEXTURE_GLTEX:
|
case WLR_GLES2_TEXTURE_GLTEX:
|
||||||
case WLR_GLES2_TEXTURE_WL_DRM_GL:
|
case WLR_GLES2_TEXTURE_WL_DRM_GL:
|
||||||
|
|
Loading…
Reference in a new issue