diff options
author | Roland Scheidegger <[email protected]> | 2017-06-23 04:57:57 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2017-06-23 19:39:29 +0200 |
commit | 672d245ffe85e85afe6ddd36868c145bb528c79b (patch) | |
tree | ad5909596fe051658e3acc3c36ed1ff105ccd947 /src/gallium | |
parent | c2f82fc1d3c401cf44fb94aa3ea531ca9cd0cb46 (diff) |
llvmpipe: fill in debug vertex info for tri rasterization
This is pretty useful for debugging rasterization issues, so turn it on
based on DEBUG (the actual existence of the fields is also conditionalized
on DEBUG, lines fill it out the same too).
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_tri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup_tri.c b/src/gallium/drivers/llvmpipe/lp_setup_tri.c index a7a5d05c328..324e93841f7 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_tri.c +++ b/src/gallium/drivers/llvmpipe/lp_setup_tri.c @@ -358,7 +358,7 @@ do_triangle_ccw(struct lp_setup_context *setup, if (!tri) return FALSE; -#if 0 +#ifdef DEBUG tri->v[0][0] = v0[0][0]; tri->v[1][0] = v1[0][0]; tri->v[2][0] = v2[0][0]; |