gallium/ddebug: add 'verbose' option
[mesa.git] / src / gallium / drivers / ddebug / dd_pipe.h
1 /**************************************************************************
2 *
3 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Copyright 2008 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * on the rights to use, copy, modify, merge, publish, distribute, sub
11 * license, and/or sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef DD_H_
29 #define DD_H_
30
31 #include "pipe/p_context.h"
32 #include "pipe/p_state.h"
33 #include "pipe/p_screen.h"
34 #include "dd_util.h"
35
36 enum dd_mode {
37 DD_DETECT_HANGS,
38 DD_DUMP_ALL_CALLS
39 };
40
41 struct dd_screen
42 {
43 struct pipe_screen base;
44 struct pipe_screen *screen;
45 unsigned timeout_ms;
46 enum dd_mode mode;
47 bool no_flush;
48 bool verbose;
49 unsigned skip_count;
50 };
51
52 struct dd_query
53 {
54 unsigned type;
55 struct pipe_query *query;
56 };
57
58 struct dd_state
59 {
60 void *cso;
61
62 union {
63 struct pipe_blend_state blend;
64 struct pipe_depth_stencil_alpha_state dsa;
65 struct pipe_rasterizer_state rs;
66 struct pipe_sampler_state sampler;
67 struct {
68 struct pipe_vertex_element velems[PIPE_MAX_ATTRIBS];
69 unsigned count;
70 } velems;
71 struct pipe_shader_state shader;
72 } state;
73 };
74
75 struct dd_context
76 {
77 struct pipe_context base;
78 struct pipe_context *pipe;
79
80 struct {
81 struct dd_query *query;
82 bool condition;
83 unsigned mode;
84 } render_cond;
85
86 struct pipe_index_buffer index_buffer;
87 struct pipe_vertex_buffer vertex_buffers[PIPE_MAX_ATTRIBS];
88
89 unsigned num_so_targets;
90 struct pipe_stream_output_target *so_targets[PIPE_MAX_SO_BUFFERS];
91 unsigned so_offsets[PIPE_MAX_SO_BUFFERS];
92
93 struct dd_state *shaders[PIPE_SHADER_TYPES];
94 struct pipe_constant_buffer constant_buffers[PIPE_SHADER_TYPES][PIPE_MAX_CONSTANT_BUFFERS];
95 struct pipe_sampler_view *sampler_views[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
96 struct dd_state *sampler_states[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
97 struct pipe_image_view *shader_images[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_IMAGES];
98 struct pipe_shader_buffer shader_buffers[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_BUFFERS];
99
100 struct dd_state *velems;
101 struct dd_state *rs;
102 struct dd_state *dsa;
103 struct dd_state *blend;
104
105 struct pipe_blend_color blend_color;
106 struct pipe_stencil_ref stencil_ref;
107 unsigned sample_mask;
108 unsigned min_samples;
109 struct pipe_clip_state clip_state;
110 struct pipe_framebuffer_state framebuffer_state;
111 struct pipe_poly_stipple polygon_stipple;
112 struct pipe_scissor_state scissors[PIPE_MAX_VIEWPORTS];
113 struct pipe_viewport_state viewports[PIPE_MAX_VIEWPORTS];
114 float tess_default_levels[6];
115
116 unsigned num_draw_calls;
117 };
118
119
120 struct pipe_context *
121 dd_context_create(struct dd_screen *dscreen, struct pipe_context *pipe);
122
123 void
124 dd_init_draw_functions(struct dd_context *dctx);
125
126
127 static inline struct dd_context *
128 dd_context(struct pipe_context *pipe)
129 {
130 return (struct dd_context *)pipe;
131 }
132
133 static inline struct dd_screen *
134 dd_screen(struct pipe_screen *screen)
135 {
136 return (struct dd_screen*)screen;
137 }
138
139
140 #define CTX_INIT(_member) \
141 dctx->base._member = dctx->pipe->_member ? dd_context_##_member : NULL
142
143 #endif /* DD_H_ */