mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
render/gles2: wrap timer setup in push_gles2_debug()
With this, errors should be properly wrapped in the debug scope.
This commit is contained in:
parent
4811d9fb18
commit
1205f03ec9
1 changed files with 5 additions and 1 deletions
|
@ -22,6 +22,8 @@ static bool render_pass_submit(struct wlr_render_pass *wlr_pass) {
|
|||
struct wlr_gles2_renderer *renderer = pass->buffer->renderer;
|
||||
struct wlr_gles2_render_timer *timer = pass->timer;
|
||||
|
||||
push_gles2_debug(renderer);
|
||||
|
||||
if (timer) {
|
||||
// clear disjoint flag
|
||||
GLint64 disjoint;
|
||||
|
@ -33,10 +35,12 @@ static bool render_pass_submit(struct wlr_render_pass *wlr_pass) {
|
|||
// get end-of-CPU-work time in CPU time domain
|
||||
clock_gettime(CLOCK_MONOTONIC, &timer->cpu_end);
|
||||
}
|
||||
push_gles2_debug(renderer);
|
||||
|
||||
glFlush();
|
||||
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
||||
|
||||
pop_gles2_debug(renderer);
|
||||
|
||||
wlr_buffer_unlock(pass->buffer->buffer);
|
||||
free(pass);
|
||||
|
||||
|
|
Loading…
Reference in a new issue