mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
trace: Fix generated XML.
This commit is contained in:
parent
f1848977e8
commit
11a981fda1
3 changed files with 9 additions and 22 deletions
|
|
@ -843,7 +843,7 @@ trace_context_set_constant_buffer(struct pipe_context *_pipe,
|
|||
trace_dump_arg(ptr, pipe);
|
||||
trace_dump_arg(uint, shader);
|
||||
trace_dump_arg(uint, index);
|
||||
trace_dump_arg(constant_buffer, buffer);
|
||||
trace_dump_arg(ptr, buffer);
|
||||
|
||||
/* XXX hmm? */
|
||||
if (buffer) {
|
||||
|
|
|
|||
|
|
@ -227,24 +227,6 @@ void trace_dump_clip_state(const struct pipe_clip_state *state)
|
|||
}
|
||||
|
||||
|
||||
void trace_dump_constant_buffer(const struct pipe_buffer *state)
|
||||
{
|
||||
if (!trace_dumping_enabled_locked())
|
||||
return;
|
||||
|
||||
if(!state) {
|
||||
trace_dump_null();
|
||||
return;
|
||||
}
|
||||
|
||||
trace_dump_struct_begin("pipe_constant_buffer");
|
||||
|
||||
trace_dump_reference(&state->reference);
|
||||
|
||||
trace_dump_struct_end();
|
||||
}
|
||||
|
||||
|
||||
void trace_dump_shader_state(const struct pipe_shader_state *state)
|
||||
{
|
||||
static char str[8192];
|
||||
|
|
@ -322,6 +304,10 @@ void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_
|
|||
|
||||
static void trace_dump_rt_blend_state(const struct pipe_rt_blend_state *state)
|
||||
{
|
||||
trace_dump_struct_begin("pipe_rt_blend_state");
|
||||
|
||||
trace_dump_member(uint, state, blend_enable);
|
||||
|
||||
trace_dump_member(uint, state, rgb_func);
|
||||
trace_dump_member(uint, state, rgb_src_factor);
|
||||
trace_dump_member(uint, state, rgb_dst_factor);
|
||||
|
|
@ -332,11 +318,13 @@ static void trace_dump_rt_blend_state(const struct pipe_rt_blend_state *state)
|
|||
|
||||
trace_dump_member(uint, state, colormask);
|
||||
|
||||
trace_dump_struct_end();
|
||||
}
|
||||
|
||||
void trace_dump_blend_state(const struct pipe_blend_state *state)
|
||||
{
|
||||
unsigned valid_entries = 1;
|
||||
|
||||
if (!trace_dumping_enabled_locked())
|
||||
return;
|
||||
|
||||
|
|
@ -354,10 +342,11 @@ void trace_dump_blend_state(const struct pipe_blend_state *state)
|
|||
|
||||
trace_dump_member(bool, state, independent_blend_enable);
|
||||
|
||||
trace_dump_member_begin("rt");
|
||||
if (state->independent_blend_enable)
|
||||
valid_entries = PIPE_MAX_COLOR_BUFS;
|
||||
|
||||
trace_dump_struct_array(rt_blend_state, state->rt, valid_entries);
|
||||
trace_dump_member_end();
|
||||
|
||||
trace_dump_struct_end();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,8 +47,6 @@ void trace_dump_scissor_state(const struct pipe_scissor_state *state);
|
|||
|
||||
void trace_dump_clip_state(const struct pipe_clip_state *state);
|
||||
|
||||
void trace_dump_constant_buffer(const struct pipe_buffer *state);
|
||||
|
||||
void trace_dump_token(const struct tgsi_token *token);
|
||||
|
||||
void trace_dump_shader_state(const struct pipe_shader_state *state);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue