mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-25 22:25:58 +01:00
render/gles2: ditch extra parens
This commit is contained in:
parent
a7a96d7644
commit
cc9b198f9e
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ static bool gles2_read_pixels(struct wlr_renderer *wlr_renderer,
|
|||
|
||||
POP_GLES2_DEBUG;
|
||||
|
||||
return (glGetError() == GL_NO_ERROR);
|
||||
return glGetError() == GL_NO_ERROR;
|
||||
}
|
||||
|
||||
static bool gles2_format_supported(struct wlr_renderer *wlr_renderer,
|
||||
|
|
Loading…
Reference in a new issue