diff options
author | Robert Bragg <robert@linux.intel.com> | 2009-04-17 15:10:55 +0100 |
---|---|---|
committer | Robert Bragg <robert@linux.intel.com> | 2009-04-17 15:25:28 +0100 |
commit | bf4a0fa03ff97b9e233129c11d237e9275caabe6 (patch) | |
tree | c6f41ee4786888eddf8ae9515c466a6eb00b9a46 /common | |
parent | ccb334452edf61f9bef521093d345a7c413e8efd (diff) | |
download | cogl-bf4a0fa03ff97b9e233129c11d237e9275caabe6.tar.gz |
[cogl debug] --cogl-debug=rectangles now outlines all cogl rectangles
This makes the #if 0'd debug code that was in _cogl_journal_flush_quad_batch
- which we have repeatedly found usefull for debugging various geometry
issues in Clutter apps - a runtime debug option.
The outline colors rotate in order from red to green to blue which can also
help confirm the order that your geometry really drawn.
The outlines are not affected by the current material state, so if you e.g.
have a blending bug where geometry mysteriously disappears this can confirm
if the underlying rectangles are actually being emitted but blending is
causing them to be invisible.
Diffstat (limited to 'common')
-rw-r--r-- | common/cogl-debug.c | 3 | ||||
-rw-r--r-- | common/cogl-primitives.c | 7 |
2 files changed, 5 insertions, 5 deletions
diff --git a/common/cogl-debug.c b/common/cogl-debug.c index 0497d744..2200b1f1 100644 --- a/common/cogl-debug.c +++ b/common/cogl-debug.c @@ -14,7 +14,8 @@ static const GDebugKey cogl_debug_keys[] = { { "shader", COGL_DEBUG_SHADER }, { "offscreen", COGL_DEBUG_OFFSCREEN }, { "draw", COGL_DEBUG_DRAW }, - { "pango", COGL_DEBUG_PANGO } + { "pango", COGL_DEBUG_PANGO }, + { "rectangles", COGL_DEBUG_RECTANGLES } }; static const gint n_cogl_debug_keys = G_N_ELEMENTS (cogl_debug_keys); diff --git a/common/cogl-primitives.c b/common/cogl-primitives.c index 881e6cef..a1b0e2bc 100644 --- a/common/cogl-primitives.c +++ b/common/cogl-primitives.c @@ -160,11 +160,11 @@ _cogl_journal_flush_quad_batch (CoglJournalEntry *batch_start, /* DEBUGGING CODE XXX: - * Uncommenting this will cause all rectangles to be drawn with a red, green + * This path will cause all rectangles to be drawn with a red, green * or blue outline with no blending. This may e.g. help with debugging * texture slicing issues or blending issues, plus it looks quite cool. */ -#if 0 + if (cogl_debug_flags & COGL_DEBUG_RECTANGLES) { static CoglHandle outline = COGL_INVALID_HANDLE; static int color = 0; @@ -172,7 +172,7 @@ _cogl_journal_flush_quad_batch (CoglJournalEntry *batch_start, outline = cogl_material_new (); cogl_enable (COGL_ENABLE_VERTEX_ARRAY); - for (i = 0; i < batch_len; i++, color = (++color) % 3) + for (i = 0; i < batch_len; i++, color = (color + 1) % 3) { cogl_material_set_color4ub (outline, color == 0 ? 0xff : 0x00, @@ -184,7 +184,6 @@ _cogl_journal_flush_quad_batch (CoglJournalEntry *batch_start, GE( glDrawArrays (GL_LINE_LOOP, 4 * i, 4) ); } } -#endif } void |