1/**************************************************************************
2 *
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#ifndef TR_DUMP_STATE_H_
29#define TR_DUMP_STATE_H_
30
31#include "pipe/p_format.h"
32#include "pipe/p_state.h"
33#include "pipe/p_shader_tokens.h"
34
35
36void trace_dump_format(enum pipe_format format);
37
38void trace_dump_resource_template(const struct pipe_resource *templat);
39
40void trace_dump_box(const struct pipe_box *box);
41
42void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state);
43
44void trace_dump_poly_stipple(const struct pipe_poly_stipple *state);
45
46void trace_dump_viewport_state(const struct pipe_viewport_state *state);
47
48void trace_dump_scissor_state(const struct pipe_scissor_state *state);
49
50void trace_dump_clip_state(const struct pipe_clip_state *state);
51
52void trace_dump_token(const struct tgsi_token *token);
53
54void trace_dump_shader_state(const struct pipe_shader_state *state);
55
56void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state);
57
58void trace_dump_blend_state(const struct pipe_blend_state *state);
59
60void trace_dump_blend_color(const struct pipe_blend_color *state);
61
62void trace_dump_stencil_ref(const struct pipe_stencil_ref *state);
63
64void trace_dump_framebuffer_state(const struct pipe_framebuffer_state *state);
65
66void trace_dump_sampler_state(const struct pipe_sampler_state *state);
67
68void trace_dump_sampler_view_template(const struct pipe_sampler_view *view,
69                                      enum pipe_texture_target target);
70
71void trace_dump_surface_template(const struct pipe_surface *state,
72                                 enum pipe_texture_target target);
73
74void trace_dump_transfer(const struct pipe_transfer *state);
75
76void trace_dump_vertex_buffer(const struct pipe_vertex_buffer *state);
77
78void trace_dump_index_buffer(const struct pipe_index_buffer *state);
79
80void trace_dump_vertex_element(const struct pipe_vertex_element *state);
81
82void trace_dump_draw_info(const struct pipe_draw_info *state);
83
84
85#endif /* TR_STATE_H */
86