[gtk/wip/chergert/glproto: 887/920] avoid glDisable/glEnable() scissor test state changes
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/chergert/glproto: 887/920] avoid glDisable/glEnable() scissor test state changes
- Date: Mon, 8 Feb 2021 19:15:47 +0000 (UTC)
commit 6c92632281bc8dc4ef0302edf3f5eee9d13c00c3
Author: Christian Hergert <chergert redhat com>
Date: Wed Feb 3 14:12:47 2021 -0800
avoid glDisable/glEnable() scissor test state changes
unless we know we need to change it.
gsk/next/gskglcommandqueue.c | 35 +++++++++++++++++++++++------------
1 file changed, 23 insertions(+), 12 deletions(-)
---
diff --git a/gsk/next/gskglcommandqueue.c b/gsk/next/gskglcommandqueue.c
index c1d7d16303..6d43ccf21e 100644
--- a/gsk/next/gskglcommandqueue.c
+++ b/gsk/next/gskglcommandqueue.c
@@ -739,21 +739,31 @@ apply_viewport (guint16 *current_width,
}
static inline void
-apply_scissor (guint framebuffer,
+apply_scissor (gboolean *state,
+ guint framebuffer,
const graphene_rect_t *scissor,
gboolean has_scissor)
{
if (framebuffer != 0 || !has_scissor)
{
- glDisable (GL_SCISSOR_TEST);
- return;
+ if (*state == TRUE)
+ {
+ glDisable (GL_SCISSOR_TEST);
+ *state = TRUE;
+ }
+ }
+ else
+ {
+ if (*state == FALSE)
+ {
+ glEnable (GL_SCISSOR_TEST);
+ glScissor (scissor->origin.x,
+ scissor->origin.y,
+ scissor->size.width,
+ scissor->size.height);
+ *state = TRUE;
+ }
}
-
- glEnable (GL_SCISSOR_TEST);
- glScissor (scissor->origin.x,
- scissor->origin.y,
- scissor->size.width,
- scissor->size.height);
}
/**
@@ -772,6 +782,7 @@ gsk_gl_command_queue_execute (GskGLCommandQueue *self,
const cairo_region_t *scissor)
{
gboolean has_scissor = scissor != NULL;
+ gboolean scissor_state = -1;
graphene_rect_t scissor_test;
int framebuffer = -1;
GLuint vao_id;
@@ -838,7 +849,7 @@ gsk_gl_command_queue_execute (GskGLCommandQueue *self,
scissor_test.size.height = r.height * scale_factor;
}
- apply_scissor (framebuffer, &scissor_test, has_scissor);
+ apply_scissor (&scissor_state, framebuffer, &scissor_test, has_scissor);
next_batch_index = 0;
@@ -857,7 +868,7 @@ gsk_gl_command_queue_execute (GskGLCommandQueue *self,
{
framebuffer = batch->clear.framebuffer;
glBindFramebuffer (GL_FRAMEBUFFER, framebuffer);
- apply_scissor (framebuffer, &scissor_test, has_scissor);
+ apply_scissor (&scissor_state, framebuffer, &scissor_test, has_scissor);
n_fbos++;
}
@@ -892,7 +903,7 @@ gsk_gl_command_queue_execute (GskGLCommandQueue *self,
{
framebuffer = batch->draw.framebuffer;
glBindFramebuffer (GL_FRAMEBUFFER, framebuffer);
- apply_scissor (framebuffer, &scissor_test, has_scissor);
+ apply_scissor (&scissor_state, framebuffer, &scissor_test, has_scissor);
n_fbos++;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]