r300g: add fallback for unaligned/unsupported vertex stride/offset/format
[mesa.git] / src / gallium / drivers / r300 / r300_context.c
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "draw/draw_context.h"
24
25 #include "util/u_memory.h"
26 #include "util/u_simple_list.h"
27 #include "util/u_upload_mgr.h"
28
29 #include "r300_context.h"
30 #include "r300_emit.h"
31 #include "r300_screen.h"
32 #include "r300_screen_buffer.h"
33 #include "r300_state_invariant.h"
34 #include "r300_winsys.h"
35
36 #include <inttypes.h>
37
38 static void r300_destroy_context(struct pipe_context* context)
39 {
40 struct r300_context* r300 = r300_context(context);
41 struct r300_query* query, * temp;
42 struct r300_atom *atom;
43
44 util_blitter_destroy(r300->blitter);
45 draw_destroy(r300->draw);
46
47 /* Print stats, if enabled. */
48 if (SCREEN_DBG_ON(r300->screen, DBG_STATS)) {
49 fprintf(stderr, "r300: Stats for context %p:\n", r300);
50 fprintf(stderr, " : Flushes: %" PRIu64 "\n", r300->flush_counter);
51 foreach(atom, &r300->atom_list) {
52 fprintf(stderr, " : %s: %" PRIu64 " emits\n",
53 atom->name, atom->counter);
54 }
55 }
56
57 /* Free the OQ BO. */
58 context->screen->resource_destroy(context->screen, r300->oqbo);
59
60 /* If there are any queries pending or not destroyed, remove them now. */
61 foreach_s(query, temp, &r300->query_list) {
62 remove_from_list(query);
63 FREE(query);
64 }
65
66 u_upload_destroy(r300->upload_vb);
67 u_upload_destroy(r300->upload_ib);
68
69 translate_cache_destroy(r300->tran.translate_cache);
70
71 FREE(r300->blend_color_state.state);
72 FREE(r300->clip_state.state);
73 FREE(r300->fb_state.state);
74 FREE(r300->rs_block_state.state);
75 FREE(r300->scissor_state.state);
76 FREE(r300->textures_state.state);
77 FREE(r300->viewport_state.state);
78 FREE(r300->ztop_state.state);
79 FREE(r300->fs_constants.state);
80 FREE(r300->vs_constants.state);
81 if (!r300->screen->caps.has_tcl) {
82 FREE(r300->vertex_stream_state.state);
83 }
84 FREE(r300);
85 }
86
87 static void r300_flush_cb(void *data)
88 {
89 struct r300_context* const cs_context_copy = data;
90
91 cs_context_copy->context.flush(&cs_context_copy->context, 0, NULL);
92 }
93
94 #define R300_INIT_ATOM(atomname, atomsize) \
95 r300->atomname.name = #atomname; \
96 r300->atomname.state = NULL; \
97 r300->atomname.size = atomsize; \
98 r300->atomname.emit = r300_emit_##atomname; \
99 r300->atomname.dirty = FALSE; \
100 insert_at_tail(&r300->atom_list, &r300->atomname);
101
102 static void r300_setup_atoms(struct r300_context* r300)
103 {
104 boolean is_r500 = r300->screen->caps.is_r500;
105 boolean has_tcl = r300->screen->caps.has_tcl;
106
107 /* Create the actual atom list.
108 *
109 * Each atom is examined and emitted in the order it appears here, which
110 * can affect performance and conformance if not handled with care.
111 *
112 * Some atoms never change size, others change every emit - those have
113 * the size of 0 here. */
114 make_empty_list(&r300->atom_list);
115 R300_INIT_ATOM(invariant_state, 71);
116 R300_INIT_ATOM(query_start, 4);
117 R300_INIT_ATOM(ztop_state, 2);
118 R300_INIT_ATOM(blend_state, 8);
119 R300_INIT_ATOM(blend_color_state, is_r500 ? 3 : 2);
120 R300_INIT_ATOM(clip_state, has_tcl ? 5 + (6 * 4) : 2);
121 R300_INIT_ATOM(dsa_state, is_r500 ? 8 : 6);
122 R300_INIT_ATOM(fb_state, 0);
123 R300_INIT_ATOM(rs_state, 0);
124 R300_INIT_ATOM(scissor_state, 3);
125 R300_INIT_ATOM(viewport_state, 9);
126 R300_INIT_ATOM(rs_block_state, 0);
127 R300_INIT_ATOM(vertex_stream_state, 0);
128 R300_INIT_ATOM(pvs_flush, 2);
129 R300_INIT_ATOM(vs_state, 0);
130 R300_INIT_ATOM(vs_constants, 0);
131 R300_INIT_ATOM(texture_cache_inval, 2);
132 R300_INIT_ATOM(textures_state, 0);
133 R300_INIT_ATOM(fs, 0);
134 R300_INIT_ATOM(fs_rc_constant_state, 0);
135 R300_INIT_ATOM(fs_constants, 0);
136
137 /* Replace emission functions for r500. */
138 if (r300->screen->caps.is_r500) {
139 r300->fs.emit = r500_emit_fs;
140 r300->fs_rc_constant_state.emit = r500_emit_fs_rc_constant_state;
141 r300->fs_constants.emit = r500_emit_fs_constants;
142 }
143
144 /* Some non-CSO atoms need explicit space to store the state locally. */
145 r300->blend_color_state.state = CALLOC_STRUCT(r300_blend_color_state);
146 r300->clip_state.state = CALLOC_STRUCT(pipe_clip_state);
147 r300->fb_state.state = CALLOC_STRUCT(pipe_framebuffer_state);
148 r300->rs_block_state.state = CALLOC_STRUCT(r300_rs_block);
149 r300->scissor_state.state = CALLOC_STRUCT(pipe_scissor_state);
150 r300->textures_state.state = CALLOC_STRUCT(r300_textures_state);
151 r300->viewport_state.state = CALLOC_STRUCT(r300_viewport_state);
152 r300->ztop_state.state = CALLOC_STRUCT(r300_ztop_state);
153 r300->fs_constants.state = CALLOC_STRUCT(r300_constant_buffer);
154 r300->vs_constants.state = CALLOC_STRUCT(r300_constant_buffer);
155 if (!r300->screen->caps.has_tcl) {
156 r300->vertex_stream_state.state = CALLOC_STRUCT(r300_vertex_stream_state);
157 }
158
159 /* Some non-CSO atoms don't use the state pointer. */
160 r300->invariant_state.allow_null_state = TRUE;
161 r300->fs_rc_constant_state.allow_null_state = TRUE;
162 r300->pvs_flush.allow_null_state = TRUE;
163 r300->query_start.allow_null_state = TRUE;
164 r300->texture_cache_inval.allow_null_state = TRUE;
165 }
166
167 struct pipe_context* r300_create_context(struct pipe_screen* screen,
168 void *priv)
169 {
170 struct r300_context* r300 = CALLOC_STRUCT(r300_context);
171 struct r300_screen* r300screen = r300_screen(screen);
172 struct r300_winsys_screen *rws = r300screen->rws;
173
174 if (!r300)
175 return NULL;
176
177 r300->rws = rws;
178 r300->screen = r300screen;
179
180 r300->context.winsys = (struct pipe_winsys*)rws;
181 r300->context.screen = screen;
182 r300->context.priv = priv;
183
184 r300->context.destroy = r300_destroy_context;
185
186 if (!r300screen->caps.has_tcl) {
187 /* Create a Draw. This is used for SW TCL. */
188 r300->draw = draw_create(&r300->context);
189 /* Enable our renderer. */
190 draw_set_rasterize_stage(r300->draw, r300_draw_stage(r300));
191 /* Enable Draw's clipping. */
192 draw_set_driver_clipping(r300->draw, FALSE);
193 /* Disable converting points/lines to triangles. */
194 draw_wide_line_threshold(r300->draw, 10000000.f);
195 draw_wide_point_threshold(r300->draw, 10000000.f);
196 }
197
198 r300_setup_atoms(r300);
199
200 /* Open up the OQ BO. */
201 r300->oqbo = pipe_buffer_create(screen,
202 R300_BIND_OQBO, 4096);
203 make_empty_list(&r300->query_list);
204
205 r300_init_blit_functions(r300);
206 r300_init_flush_functions(r300);
207 r300_init_query_functions(r300);
208 r300_init_render_functions(r300);
209 r300_init_state_functions(r300);
210 r300_init_resource_functions(r300);
211
212 r300->invariant_state.dirty = TRUE;
213
214 rws->set_flush_cb(r300->rws, r300_flush_cb, r300);
215 r300->dirty_hw++;
216
217 r300->blitter = util_blitter_create(&r300->context);
218
219 r300->upload_ib = u_upload_create(&r300->context,
220 32 * 1024, 16,
221 PIPE_BIND_INDEX_BUFFER);
222
223 if (r300->upload_ib == NULL)
224 goto no_upload_ib;
225
226 r300->upload_vb = u_upload_create(&r300->context,
227 128 * 1024, 16,
228 PIPE_BIND_VERTEX_BUFFER);
229 if (r300->upload_vb == NULL)
230 goto no_upload_vb;
231
232 r300->tran.translate_cache = translate_cache_create();
233
234 return &r300->context;
235
236 no_upload_ib:
237 u_upload_destroy(r300->upload_ib);
238 no_upload_vb:
239 FREE(r300);
240 return NULL;
241 }
242
243 boolean r300_check_cs(struct r300_context *r300, unsigned size)
244 {
245 struct r300_cs_info cs_info;
246
247 r300->rws->get_cs_info(r300->rws, &cs_info);
248 return size <= cs_info.free;
249 }
250
251 void r300_finish(struct r300_context *r300)
252 {
253 struct pipe_framebuffer_state *fb;
254 unsigned i;
255
256 /* This is a preliminary implementation of glFinish.
257 *
258 * The ideal implementation should use something like EmitIrqLocked and
259 * WaitIrq, or better, real fences.
260 */
261 if (r300->fb_state.state) {
262 fb = r300->fb_state.state;
263
264 for (i = 0; i < fb->nr_cbufs; i++) {
265 if (fb->cbufs[i]->texture) {
266 r300->rws->buffer_wait(r300->rws,
267 r300_texture(fb->cbufs[i]->texture)->buffer);
268 return;
269 }
270 }
271 if (fb->zsbuf && fb->zsbuf->texture) {
272 r300->rws->buffer_wait(r300->rws,
273 r300_texture(fb->zsbuf->texture)->buffer);
274 }
275 }
276 }