mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
trace: Dump polygon stipple state as an array.
This commit is contained in:
parent
e08072c5db
commit
e54fa77d13
1 changed files with 3 additions and 2 deletions
|
|
@ -150,9 +150,10 @@ void trace_dump_poly_stipple(struct trace_stream *stream,
|
|||
trace_dump_struct_begin(stream, "pipe_poly_stipple");
|
||||
|
||||
trace_dump_member_begin(stream, "stipple");
|
||||
trace_dump_bytes(stream,
|
||||
trace_dump_array(stream,
|
||||
uint,
|
||||
state->stipple,
|
||||
sizeof(state->stipple));
|
||||
Elements(state->stipple));
|
||||
trace_dump_member_end(stream);
|
||||
|
||||
trace_dump_struct_end(stream);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue