mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
[cogl journal] Perform software modelview transform on logged quads.
Since most Clutter actors aren't much more than textured quads; flushing the journal typically involves lots of 'change modelview; draw quad' sequences. The amount of overhead involved in uploading a new modelview and queuing that primitive is huge in comparison to simply transforming 4 vertices by the current modelview when logging quads. (Note if your GPU supports HW vertex transform, then it still does the projective and viewport transforms) At the same time a --cogl-debug=disable-software-transform option has been added for comparison and debugging. This change allows typical pick scenes to be batched into a single draw call and I'm seeing test-pick run over 200% faster with this. (i965 + Mesa 7.6-devel)
This commit is contained in:
parent
612a1e2dea
commit
efbf483d8c
@ -43,7 +43,8 @@ typedef enum {
|
|||||||
COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES = 1 << 11,
|
COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES = 1 << 11,
|
||||||
COGL_DEBUG_DISABLE_VBOS = 1 << 12,
|
COGL_DEBUG_DISABLE_VBOS = 1 << 12,
|
||||||
COGL_DEBUG_JOURNAL = 1 << 13,
|
COGL_DEBUG_JOURNAL = 1 << 13,
|
||||||
COGL_DEBUG_BATCHING = 1 << 14
|
COGL_DEBUG_BATCHING = 1 << 14,
|
||||||
|
COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM = 1 << 15
|
||||||
} CoglDebugFlags;
|
} CoglDebugFlags;
|
||||||
|
|
||||||
#ifdef COGL_ENABLE_DEBUG
|
#ifdef COGL_ENABLE_DEBUG
|
||||||
|
@ -45,7 +45,8 @@ static const GDebugKey cogl_debug_keys[] = {
|
|||||||
{ "client-side-matrices", COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES },
|
{ "client-side-matrices", COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES },
|
||||||
{ "disable-vbos", COGL_DEBUG_DISABLE_VBOS },
|
{ "disable-vbos", COGL_DEBUG_DISABLE_VBOS },
|
||||||
{ "journal", COGL_DEBUG_JOURNAL },
|
{ "journal", COGL_DEBUG_JOURNAL },
|
||||||
{ "batching", COGL_DEBUG_BATCHING }
|
{ "batching", COGL_DEBUG_BATCHING },
|
||||||
|
{ "disable-software-transform", COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const gint n_cogl_debug_keys = G_N_ELEMENTS (cogl_debug_keys);
|
static const gint n_cogl_debug_keys = G_N_ELEMENTS (cogl_debug_keys);
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
/* XXX NB:
|
/* XXX NB:
|
||||||
* Our journal's vertex data is arranged as follows:
|
* Our journal's vertex data is arranged as follows:
|
||||||
* 4 vertices per quad:
|
* 4 vertices per quad:
|
||||||
* 2 or GLfloats per position
|
* 2 or 3 GLfloats per position (3 when doing software transforms)
|
||||||
* 4 RGBA GLubytes,
|
* 4 RGBA GLubytes,
|
||||||
* 2 GLfloats per tex coord * n_layers
|
* 2 GLfloats per tex coord * n_layers
|
||||||
*
|
*
|
||||||
@ -66,11 +66,21 @@
|
|||||||
* To avoid frequent changes in the stride of our vertex data we always pad
|
* To avoid frequent changes in the stride of our vertex data we always pad
|
||||||
* n_layers to be >= 2
|
* n_layers to be >= 2
|
||||||
*
|
*
|
||||||
|
* When we are transforming quads in software we need to also track the z
|
||||||
|
* coordinate of transformed vertices.
|
||||||
|
*
|
||||||
* So for a given number of layers this gets the stride in 32bit words:
|
* So for a given number of layers this gets the stride in 32bit words:
|
||||||
*/
|
*/
|
||||||
|
#define SW_TRANSFORM (!(cogl_debug_flags & \
|
||||||
|
COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM))
|
||||||
|
#define POS_STRIDE (SW_TRANSFORM ? 3 : 2) /* number of 32bit words */
|
||||||
|
#define N_POS_COMPONENTS POS_STRIDE
|
||||||
|
#define COLOR_STRIDE 1 /* number of 32bit words */
|
||||||
|
#define TEX_STRIDE 2 /* number of 32bit words */
|
||||||
#define MIN_LAYER_PADING 2
|
#define MIN_LAYER_PADING 2
|
||||||
#define GET_JOURNAL_VB_STRIDE_FOR_N_LAYERS(N_LAYERS) \
|
#define GET_JOURNAL_VB_STRIDE_FOR_N_LAYERS(N_LAYERS) \
|
||||||
(2 + 1 + 2 * (N_LAYERS < MIN_LAYER_PADING ? MIN_LAYER_PADING : N_LAYERS))
|
(POS_STRIDE + COLOR_STRIDE + \
|
||||||
|
TEX_STRIDE * (N_LAYERS < MIN_LAYER_PADING ? MIN_LAYER_PADING : N_LAYERS))
|
||||||
|
|
||||||
|
|
||||||
typedef void (*CoglJournalBatchCallback) (CoglJournalEntry *start,
|
typedef void (*CoglJournalBatchCallback) (CoglJournalEntry *start,
|
||||||
@ -108,19 +118,26 @@ _cogl_journal_dump_quad_vertices (guint8 *data, int n_layers)
|
|||||||
|
|
||||||
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
||||||
|
|
||||||
g_print ("stride = %d (%d bytes)\n", (int)stride, (int)stride * 4);
|
g_print ("n_layers = %d; stride = %d; pos stride = %d; color stride = %d; "
|
||||||
|
"tex stride = %d; stride in bytes = %d\n",
|
||||||
|
n_layers, (int)stride, POS_STRIDE, COLOR_STRIDE,
|
||||||
|
TEX_STRIDE, (int)stride * 4);
|
||||||
|
|
||||||
for (i = 0; i < 4; i++)
|
for (i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
float *v = (float *)data + (i * stride);
|
float *v = (float *)data + (i * stride);
|
||||||
guint8 *c = data + 8 + (i * stride * 4);
|
guint8 *c = data + (POS_STRIDE * 4) + (i * stride * 4);
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
|
if (cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM)
|
||||||
g_print ("v%d: x = %f, y = %f, rgba=0x%02X%02X%02X%02X",
|
g_print ("v%d: x = %f, y = %f, rgba=0x%02X%02X%02X%02X",
|
||||||
i, v[0], v[1], c[0], c[1], c[2], c[3]);
|
i, v[0], v[1], c[0], c[1], c[2], c[3]);
|
||||||
|
else
|
||||||
|
g_print ("v%d: x = %f, y = %f, z = %f, rgba=0x%02X%02X%02X%02X",
|
||||||
|
i, v[0], v[1], v[2], c[0], c[1], c[2], c[3]);
|
||||||
for (j = 0; j < n_layers; j++)
|
for (j = 0; j < n_layers; j++)
|
||||||
{
|
{
|
||||||
float *t = v + 3 + 2 * j;
|
float *t = v + POS_STRIDE + COLOR_STRIDE + TEX_STRIDE * j;
|
||||||
g_print (", tx%d = %f, ty%d = %f", j, t[0], j, t[1]);
|
g_print (", tx%d = %f, ty%d = %f", j, t[0], j, t[1]);
|
||||||
}
|
}
|
||||||
g_print ("\n");
|
g_print ("\n");
|
||||||
@ -181,6 +198,7 @@ _cogl_journal_flush_modelview_and_entries (CoglJournalEntry *batch_start,
|
|||||||
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_BATCHING))
|
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_BATCHING))
|
||||||
g_print ("BATCHING: modelview batch len = %d\n", batch_len);
|
g_print ("BATCHING: modelview batch len = %d\n", batch_len);
|
||||||
|
|
||||||
|
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM))
|
||||||
GE (glLoadMatrixf ((GLfloat *)&batch_start->model_view));
|
GE (glLoadMatrixf ((GLfloat *)&batch_start->model_view));
|
||||||
|
|
||||||
#ifdef HAVE_COGL_GL
|
#ifdef HAVE_COGL_GL
|
||||||
@ -248,6 +266,7 @@ compare_entry_modelviews (CoglJournalEntry *entry0,
|
|||||||
* if the age has increased, and if so record the change as a
|
* if the age has increased, and if so record the change as a
|
||||||
* boolean in the journal.
|
* boolean in the journal.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (memcmp (&entry0->model_view, &entry1->model_view,
|
if (memcmp (&entry0->model_view, &entry1->model_view,
|
||||||
sizeof (GLfloat) * 16) == 0)
|
sizeof (GLfloat) * 16) == 0)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
@ -283,12 +302,18 @@ _cogl_journal_flush_material_and_entries (CoglJournalEntry *batch_start,
|
|||||||
enable_flags |= COGL_ENABLE_COLOR_ARRAY;
|
enable_flags |= COGL_ENABLE_COLOR_ARRAY;
|
||||||
cogl_enable (enable_flags);
|
cogl_enable (enable_flags);
|
||||||
|
|
||||||
|
/* If we haven't transformed the quads in software then we need to also break
|
||||||
|
* up batches according to changes in the modelview matrix... */
|
||||||
|
if (cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM)
|
||||||
|
{
|
||||||
batch_and_call (batch_start,
|
batch_and_call (batch_start,
|
||||||
batch_len,
|
batch_len,
|
||||||
compare_entry_modelviews,
|
compare_entry_modelviews,
|
||||||
_cogl_journal_flush_modelview_and_entries,
|
_cogl_journal_flush_modelview_and_entries,
|
||||||
data);
|
data);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
_cogl_journal_flush_modelview_and_entries (batch_start, batch_len, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
@ -332,14 +357,16 @@ _cogl_journal_flush_texcoord_vbo_offsets_and_entries (
|
|||||||
/* XXX NB:
|
/* XXX NB:
|
||||||
* Our journal's vertex data is arranged as follows:
|
* Our journal's vertex data is arranged as follows:
|
||||||
* 4 vertices per quad:
|
* 4 vertices per quad:
|
||||||
* 2 GLfloats per position
|
* 2 or 3 GLfloats per position (3 when doing software transforms)
|
||||||
* 4 RGBA GLubytes,
|
* 4 RGBA GLubytes,
|
||||||
* 2 GLfloats per tex coord * n_layers
|
* 2 GLfloats per tex coord * n_layers
|
||||||
* (though n_layers may be padded; see definition of
|
* (though n_layers may be padded; see definition of
|
||||||
* GET_JOURNAL_VB_STRIDE_FOR_N_LAYERS for details)
|
* GET_JOURNAL_VB_STRIDE_FOR_N_LAYERS for details)
|
||||||
*/
|
*/
|
||||||
GE (glTexCoordPointer (2, GL_FLOAT, state->stride,
|
GE (glTexCoordPointer (2, GL_FLOAT, state->stride,
|
||||||
(void *)(state->vbo_offset + 12 + 8 * i)));
|
(void *)(state->vbo_offset +
|
||||||
|
(POS_STRIDE + COLOR_STRIDE) * 4 +
|
||||||
|
TEX_STRIDE * 4 * i)));
|
||||||
}
|
}
|
||||||
prev_n_texcoord_arrays_enabled =
|
prev_n_texcoord_arrays_enabled =
|
||||||
ctx->n_texcoord_arrays_enabled;
|
ctx->n_texcoord_arrays_enabled;
|
||||||
@ -389,7 +416,7 @@ _cogl_journal_flush_vbo_offsets_and_entries (CoglJournalEntry *batch_start,
|
|||||||
/* XXX NB:
|
/* XXX NB:
|
||||||
* Our journal's vertex data is arranged as follows:
|
* Our journal's vertex data is arranged as follows:
|
||||||
* 4 vertices per quad:
|
* 4 vertices per quad:
|
||||||
* 2 GLfloats per position
|
* 2 or 3 GLfloats per position (3 when doing software transforms)
|
||||||
* 4 RGBA GLubytes,
|
* 4 RGBA GLubytes,
|
||||||
* 2 GLfloats per tex coord * n_layers
|
* 2 GLfloats per tex coord * n_layers
|
||||||
* (though n_layers may be padded; see definition of
|
* (though n_layers may be padded; see definition of
|
||||||
@ -399,9 +426,10 @@ _cogl_journal_flush_vbo_offsets_and_entries (CoglJournalEntry *batch_start,
|
|||||||
stride *= sizeof (GLfloat);
|
stride *= sizeof (GLfloat);
|
||||||
state->stride = stride;
|
state->stride = stride;
|
||||||
|
|
||||||
GE (glVertexPointer (2, GL_FLOAT, stride, (void *)state->vbo_offset));
|
GE (glVertexPointer (N_POS_COMPONENTS, GL_FLOAT, stride,
|
||||||
|
(void *)state->vbo_offset));
|
||||||
GE (glColorPointer (4, GL_UNSIGNED_BYTE, stride,
|
GE (glColorPointer (4, GL_UNSIGNED_BYTE, stride,
|
||||||
(void *)(state->vbo_offset + 8)));
|
(void *)(state->vbo_offset + (POS_STRIDE * 4))));
|
||||||
|
|
||||||
#ifndef HAVE_COGL_GL
|
#ifndef HAVE_COGL_GL
|
||||||
indices_handle = cogl_vertex_buffer_indices_get_for_quads (needed_indices);
|
indices_handle = cogl_vertex_buffer_indices_get_for_quads (needed_indices);
|
||||||
@ -540,19 +568,36 @@ _cogl_journal_flush (void)
|
|||||||
* we need to dirty our client side matrix stack cache... */
|
* we need to dirty our client side matrix stack cache... */
|
||||||
_cogl_current_matrix_state_dirty ();
|
_cogl_current_matrix_state_dirty ();
|
||||||
|
|
||||||
|
/* If we have transformed all our quads at log time then the whole journal
|
||||||
|
* then we ensure no further model transform is applied by loading the
|
||||||
|
* identity matrix here...*/
|
||||||
|
if (!(cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM))
|
||||||
|
{
|
||||||
|
GE (glMatrixMode (GL_MODELVIEW));
|
||||||
|
glLoadIdentity ();
|
||||||
|
}
|
||||||
|
|
||||||
/* batch_and_call() batches a list of journal entries according to some
|
/* batch_and_call() batches a list of journal entries according to some
|
||||||
* given criteria and calls a callback once for each determined batch.
|
* given criteria and calls a callback once for each determined batch.
|
||||||
*
|
*
|
||||||
* The process of flushing the journal is done by splitting the entries
|
* The process of flushing the journal is staggered to reduce the amount
|
||||||
* by three broad criteria:
|
* of driver/GPU state changes necessary:
|
||||||
* 1) We split the entries according the number of material layers.
|
* 1) We split the entries according to the stride of the vertices:
|
||||||
* Each time the number of material layers changes, then the stride
|
* Each time the stride of our vertex data changes we need to call
|
||||||
* changes, so we need to call gl{Vertex,Color,Texture}Pointer to
|
* gl{Vertex,Color}Pointer to inform GL of new VBO offsets.
|
||||||
* inform GL of new VO offsets.
|
* Currently the only thing that affects the stride of our vertex data
|
||||||
* 2) We then split according to compatible Cogl materials.
|
* is the number of material layers.
|
||||||
|
* 2) We split the entries explicitly by the number of material layers:
|
||||||
|
* We pad our vertex data when the number of layers is < 2 so that we
|
||||||
|
* can minimize changes in stride. Each time the number of layers
|
||||||
|
* changes we need to call glTexCoordPointer to inform GL of new VBO
|
||||||
|
* offsets.
|
||||||
|
* 3) We then split according to compatible Cogl materials:
|
||||||
* This is where we flush material state
|
* This is where we flush material state
|
||||||
* 3) Finally we split according to modelview matrix changes.
|
* 4) Finally we split according to modelview matrix changes:
|
||||||
* This is when we finally tell GL to draw something.
|
* This is when we finally tell GL to draw something.
|
||||||
|
* Note: Splitting by modelview changes is skipped when are doing the
|
||||||
|
* vertex transformation in software at log time.
|
||||||
*/
|
*/
|
||||||
batch_and_call ((CoglJournalEntry *)ctx->journal->data, /* first entry */
|
batch_and_call ((CoglJournalEntry *)ctx->journal->data, /* first entry */
|
||||||
ctx->journal->len, /* max number of entries to consider */
|
ctx->journal->len, /* max number of entries to consider */
|
||||||
@ -612,7 +657,7 @@ _cogl_journal_log_quad (float x_1,
|
|||||||
next_vert = ctx->logged_vertices->len;
|
next_vert = ctx->logged_vertices->len;
|
||||||
g_array_set_size (ctx->logged_vertices, next_vert + 4 * stride);
|
g_array_set_size (ctx->logged_vertices, next_vert + 4 * stride);
|
||||||
v = &g_array_index (ctx->logged_vertices, GLfloat, next_vert);
|
v = &g_array_index (ctx->logged_vertices, GLfloat, next_vert);
|
||||||
c = (GLubyte *)(v + 2);
|
c = (GLubyte *)(v + POS_STRIDE);
|
||||||
|
|
||||||
/* XXX: All the jumping around to fill in this strided buffer doesn't
|
/* XXX: All the jumping around to fill in this strided buffer doesn't
|
||||||
* seem ideal. */
|
* seem ideal. */
|
||||||
@ -630,6 +675,8 @@ _cogl_journal_log_quad (float x_1,
|
|||||||
memcpy (c, src_c, 4);
|
memcpy (c, src_c, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM))
|
||||||
|
{
|
||||||
v[0] = x_1; v[1] = y_1;
|
v[0] = x_1; v[1] = y_1;
|
||||||
v += stride;
|
v += stride;
|
||||||
v[0] = x_1; v[1] = y_2;
|
v[0] = x_1; v[1] = y_2;
|
||||||
@ -637,12 +684,38 @@ _cogl_journal_log_quad (float x_1,
|
|||||||
v[0] = x_2; v[1] = y_2;
|
v[0] = x_2; v[1] = y_2;
|
||||||
v += stride;
|
v += stride;
|
||||||
v[0] = x_2; v[1] = y_1;
|
v[0] = x_2; v[1] = y_1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CoglMatrix mv;
|
||||||
|
float x, y, z, w;
|
||||||
|
|
||||||
|
cogl_get_modelview_matrix (&mv);
|
||||||
|
|
||||||
|
x = x_1, y = y_1, z = 0; w = 1;
|
||||||
|
cogl_matrix_transform_point (&mv, &x, &y, &z, &w);
|
||||||
|
v[0] = x; v[1] = y; v[2] = z;
|
||||||
|
v += stride;
|
||||||
|
x = x_1, y = y_2, z = 0; w = 1;
|
||||||
|
cogl_matrix_transform_point (&mv, &x, &y, &z, &w);
|
||||||
|
v[0] = x; v[1] = y; v[2] = z;
|
||||||
|
v += stride;
|
||||||
|
x = x_2, y = y_2, z = 0; w = 1;
|
||||||
|
cogl_matrix_transform_point (&mv, &x, &y, &z, &w);
|
||||||
|
v[0] = x; v[1] = y; v[2] = z;
|
||||||
|
v += stride;
|
||||||
|
x = x_2, y = y_1, z = 0; w = 1;
|
||||||
|
cogl_matrix_transform_point (&mv, &x, &y, &z, &w);
|
||||||
|
v[0] = x; v[1] = y; v[2] = z;
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < n_layers; i++)
|
for (i = 0; i < n_layers; i++)
|
||||||
{
|
{
|
||||||
/* NB: See note at top about vertex buffer layout: */
|
/* XXX: See definition of GET_JOURNAL_VB_STRIDE_FOR_N_LAYERS for details
|
||||||
GLfloat *t = &g_array_index (ctx->logged_vertices,
|
* about how we pack our vertex data */
|
||||||
GLfloat, next_vert + 3 + 2 * i);
|
GLfloat *t = &g_array_index (ctx->logged_vertices, GLfloat,
|
||||||
|
next_vert + POS_STRIDE +
|
||||||
|
COLOR_STRIDE + TEX_STRIDE * i);
|
||||||
|
|
||||||
t[0] = tex_coords[0]; t[1] = tex_coords[1];
|
t[0] = tex_coords[0]; t[1] = tex_coords[1];
|
||||||
t += stride;
|
t += stride;
|
||||||
@ -677,6 +750,7 @@ _cogl_journal_log_quad (float x_1,
|
|||||||
entry->flush_options.fallback_layers = fallback_layers;
|
entry->flush_options.fallback_layers = fallback_layers;
|
||||||
entry->flush_options.disable_layers = disable_layers;
|
entry->flush_options.disable_layers = disable_layers;
|
||||||
entry->flush_options.layer0_override_texture = layer0_override_texture;
|
entry->flush_options.layer0_override_texture = layer0_override_texture;
|
||||||
|
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM))
|
||||||
cogl_get_modelview_matrix (&entry->model_view);
|
cogl_get_modelview_matrix (&entry->model_view);
|
||||||
|
|
||||||
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_DISABLE_BATCHING
|
if (G_UNLIKELY (cogl_debug_flags & COGL_DEBUG_DISABLE_BATCHING
|
||||||
|
Loading…
Reference in New Issue
Block a user