r600g: more indentation fix + warning silencing + dead code removal
[mesa.git] / src / gallium / drivers / r600 / r600_state_common.c
1 /*
2 * Copyright 2010 Red Hat Inc.
3 * 2010 Jerome Glisse
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie <airlied@redhat.com>
25 * Jerome Glisse <jglisse@redhat.com>
26 */
27 #include <util/u_memory.h>
28 #include <util/u_format.h>
29 #include <pipebuffer/pb_buffer.h>
30 #include "r600_pipe.h"
31
32 /* common state between evergreen and r600 */
33 void r600_bind_blend_state(struct pipe_context *ctx, void *state)
34 {
35 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
36 struct r600_pipe_blend *blend = (struct r600_pipe_blend *)state;
37 struct r600_pipe_state *rstate;
38
39 if (state == NULL)
40 return;
41 rstate = &blend->rstate;
42 rctx->states[rstate->id] = rstate;
43 rctx->cb_target_mask = blend->cb_target_mask;
44 r600_context_pipe_state_set(&rctx->ctx, rstate);
45 }
46
47 void r600_bind_rs_state(struct pipe_context *ctx, void *state)
48 {
49 struct r600_pipe_rasterizer *rs = (struct r600_pipe_rasterizer *)state;
50 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
51
52 if (state == NULL)
53 return;
54
55 rctx->flatshade = rs->flatshade;
56 rctx->sprite_coord_enable = rs->sprite_coord_enable;
57 rctx->rasterizer = rs;
58
59 rctx->states[rs->rstate.id] = &rs->rstate;
60 r600_context_pipe_state_set(&rctx->ctx, &rs->rstate);
61
62 if (rctx->family >= CHIP_CEDAR) {
63 evergreen_polygon_offset_update(rctx);
64 } else {
65 r600_polygon_offset_update(rctx);
66 }
67 }
68
69 void r600_delete_rs_state(struct pipe_context *ctx, void *state)
70 {
71 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
72 struct r600_pipe_rasterizer *rs = (struct r600_pipe_rasterizer *)state;
73
74 if (rctx->rasterizer == rs) {
75 rctx->rasterizer = NULL;
76 }
77 if (rctx->states[rs->rstate.id] == &rs->rstate) {
78 rctx->states[rs->rstate.id] = NULL;
79 }
80 free(rs);
81 }
82
83 void r600_sampler_view_destroy(struct pipe_context *ctx,
84 struct pipe_sampler_view *state)
85 {
86 struct r600_pipe_sampler_view *resource = (struct r600_pipe_sampler_view *)state;
87
88 pipe_resource_reference(&state->texture, NULL);
89 FREE(resource);
90 }
91
92 void r600_bind_state(struct pipe_context *ctx, void *state)
93 {
94 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
95 struct r600_pipe_state *rstate = (struct r600_pipe_state *)state;
96
97 if (state == NULL)
98 return;
99 rctx->states[rstate->id] = rstate;
100 r600_context_pipe_state_set(&rctx->ctx, rstate);
101 }
102
103 void r600_delete_state(struct pipe_context *ctx, void *state)
104 {
105 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
106 struct r600_pipe_state *rstate = (struct r600_pipe_state *)state;
107
108 if (rctx->states[rstate->id] == rstate) {
109 rctx->states[rstate->id] = NULL;
110 }
111 for (int i = 0; i < rstate->nregs; i++) {
112 r600_bo_reference(rctx->radeon, &rstate->regs[i].bo, NULL);
113 }
114 free(rstate);
115 }
116
117 void r600_bind_vertex_elements(struct pipe_context *ctx, void *state)
118 {
119 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
120 struct r600_vertex_element *v = (struct r600_vertex_element*)state;
121
122 rctx->vertex_elements = v;
123 if (v) {
124 // rctx->vs_rebuild = TRUE;
125 }
126 }
127
128 void r600_delete_vertex_element(struct pipe_context *ctx, void *state)
129 {
130 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
131
132 FREE(state);
133
134 if (rctx->vertex_elements == state)
135 rctx->vertex_elements = NULL;
136 }
137
138
139 void r600_set_index_buffer(struct pipe_context *ctx,
140 const struct pipe_index_buffer *ib)
141 {
142 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
143
144 if (ib) {
145 pipe_resource_reference(&rctx->index_buffer.buffer, ib->buffer);
146 memcpy(&rctx->index_buffer, ib, sizeof(rctx->index_buffer));
147 } else {
148 pipe_resource_reference(&rctx->index_buffer.buffer, NULL);
149 memset(&rctx->index_buffer, 0, sizeof(rctx->index_buffer));
150 }
151
152 /* TODO make this more like a state */
153 }
154
155 void r600_set_vertex_buffers(struct pipe_context *ctx, unsigned count,
156 const struct pipe_vertex_buffer *buffers)
157 {
158 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
159 struct pipe_vertex_buffer *vbo;
160 unsigned max_index = (unsigned)-1;
161
162 for (int i = 0; i < rctx->nvertex_buffer; i++) {
163 pipe_resource_reference(&rctx->vertex_buffer[i].buffer, NULL);
164 }
165 memcpy(rctx->vertex_buffer, buffers, sizeof(struct pipe_vertex_buffer) * count);
166
167 for (int i = 0; i < count; i++) {
168 vbo = (struct pipe_vertex_buffer*)&buffers[i];
169
170 rctx->vertex_buffer[i].buffer = NULL;
171 if (r600_buffer_is_user_buffer(buffers[i].buffer))
172 rctx->any_user_vbs = TRUE;
173 pipe_resource_reference(&rctx->vertex_buffer[i].buffer, buffers[i].buffer);
174
175 if (vbo->max_index == ~0) {
176 if (!vbo->stride)
177 vbo->max_index = 1;
178 else
179 vbo->max_index = (vbo->buffer->width0 - vbo->buffer_offset) / vbo->stride;
180 }
181 max_index = MIN2(vbo->max_index, max_index);
182 }
183 rctx->nvertex_buffer = count;
184 rctx->vb_max_index = max_index;
185 }
186
187
188 #define FORMAT_REPLACE(what, withwhat) \
189 case PIPE_FORMAT_##what: *format = PIPE_FORMAT_##withwhat; break
190
191 void *r600_create_vertex_elements(struct pipe_context *ctx,
192 unsigned count,
193 const struct pipe_vertex_element *elements)
194 {
195 struct r600_vertex_element *v = CALLOC_STRUCT(r600_vertex_element);
196 int i;
197 enum pipe_format *format;
198
199 assert(count < 32);
200 if (!v)
201 return NULL;
202
203 v->count = count;
204 memcpy(v->elements, elements, count * sizeof(struct pipe_vertex_element));
205
206 for (i = 0; i < count; i++) {
207 v->hw_format[i] = v->elements[i].src_format;
208 format = &v->hw_format[i];
209
210 switch (*format) {
211 FORMAT_REPLACE(R64_FLOAT, R32_FLOAT);
212 FORMAT_REPLACE(R64G64_FLOAT, R32G32_FLOAT);
213 FORMAT_REPLACE(R64G64B64_FLOAT, R32G32B32_FLOAT);
214 FORMAT_REPLACE(R64G64B64A64_FLOAT, R32G32B32A32_FLOAT);
215 default:;
216 }
217 v->incompatible_layout =
218 v->incompatible_layout ||
219 v->elements[i].src_format != v->hw_format[i] ||
220 v->elements[i].src_offset % 4 != 0;
221
222 v->hw_format_size[i] = align(util_format_get_blocksize(v->hw_format[i]), 4);
223 }
224
225 return v;
226 }
227
228 void *r600_create_shader_state(struct pipe_context *ctx,
229 const struct pipe_shader_state *state)
230 {
231 struct r600_pipe_shader *shader = CALLOC_STRUCT(r600_pipe_shader);
232 int r;
233
234 r = r600_pipe_shader_create(ctx, shader, state->tokens);
235 if (r) {
236 return NULL;
237 }
238 return shader;
239 }
240
241 void r600_bind_ps_shader(struct pipe_context *ctx, void *state)
242 {
243 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
244
245 /* TODO delete old shader */
246 rctx->ps_shader = (struct r600_pipe_shader *)state;
247 }
248
249 void r600_bind_vs_shader(struct pipe_context *ctx, void *state)
250 {
251 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
252
253 /* TODO delete old shader */
254 rctx->vs_shader = (struct r600_pipe_shader *)state;
255 }
256
257 void r600_delete_ps_shader(struct pipe_context *ctx, void *state)
258 {
259 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
260 struct r600_pipe_shader *shader = (struct r600_pipe_shader *)state;
261
262 if (rctx->ps_shader == shader) {
263 rctx->ps_shader = NULL;
264 }
265
266 r600_pipe_shader_destroy(ctx, shader);
267 free(shader);
268 }
269
270 void r600_delete_vs_shader(struct pipe_context *ctx, void *state)
271 {
272 struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx;
273 struct r600_pipe_shader *shader = (struct r600_pipe_shader *)state;
274
275 if (rctx->vs_shader == shader) {
276 rctx->vs_shader = NULL;
277 }
278
279 r600_pipe_shader_destroy(ctx, shader);
280 free(shader);
281 }