diff options
author | Brian Paul <[email protected]> | 2011-03-17 20:31:58 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-03-17 20:31:58 -0600 |
commit | 147148fd50ec2db089a0fbcca9740146aa096be8 (patch) | |
tree | ffc584eface1527b00594f05c5c41a7b3d79ec68 /src/mesa/swrast/s_span.c | |
parent | 5e9aa9926b9bdf1260ce7350b88908bda337388b (diff) |
swrast: report data type in error message
Diffstat (limited to 'src/mesa/swrast/s_span.c')
-rw-r--r-- | src/mesa/swrast/s_span.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_span.c b/src/mesa/swrast/s_span.c index 3240b135774..ef38a6b22b8 100644 --- a/src/mesa/swrast/s_span.c +++ b/src/mesa/swrast/s_span.c @@ -299,7 +299,8 @@ interpolate_int_colors(struct gl_context *ctx, SWspan *span) interpolate_active_attribs(ctx, span, FRAG_BIT_COL0); break; default: - _mesa_problem(NULL, "bad datatype in interpolate_int_colors"); + _mesa_problem(ctx, "bad datatype 0x%x in interpolate_int_colors", + span->array->ChanType); } span->arrayMask |= SPAN_RGBA; } |