Merge remote branch 'main/master' into radeon-rewrite
[mesa.git] / src / gallium / drivers / trace / tr_state.h
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_STATE_H
29 #define TR_STATE_H
30
31 #include "pipe/p_format.h"
32 #include "pipe/p_state.h"
33 #include "pipe/p_shader_tokens.h"
34
35
36 void trace_dump_format(enum pipe_format format);
37
38 void trace_dump_block(const struct pipe_format_block *block);
39
40 void trace_dump_template(const struct pipe_texture *templat);
41
42
43 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state);
44
45 void trace_dump_poly_stipple(const struct pipe_poly_stipple *state);
46
47 void trace_dump_viewport_state(const struct pipe_viewport_state *state);
48
49 void trace_dump_scissor_state(const struct pipe_scissor_state *state);
50
51 void trace_dump_clip_state(const struct pipe_clip_state *state);
52
53 void trace_dump_constant_buffer(const struct pipe_constant_buffer *state);
54
55 void trace_dump_token(const struct tgsi_token *token);
56
57 void trace_dump_shader_state(const struct pipe_shader_state *state);
58
59 void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state);
60
61 void trace_dump_blend_state(const struct pipe_blend_state *state);
62
63 void trace_dump_blend_color(const struct pipe_blend_color *state);
64
65 void trace_dump_framebuffer_state(const struct pipe_framebuffer_state *state);
66
67 void trace_dump_sampler_state(const struct pipe_sampler_state *state);
68
69 void trace_dump_surface(const struct pipe_surface *state);
70
71 void trace_dump_transfer(const struct pipe_transfer *state);
72
73 void trace_dump_vertex_buffer(const struct pipe_vertex_buffer *state);
74
75 void trace_dump_vertex_element(const struct pipe_vertex_element *state);
76
77
78 #endif /* TR_STATE_H */