OSDN Git Service

draw/so: fix overflow calculation
[android-x86/external-mesa.git] / src / gallium / auxiliary / draw / draw_pt_so_emit.c
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
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 VMWARE 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 #include "draw/draw_private.h"
29 #include "draw/draw_vs.h"
30 #include "draw/draw_gs.h"
31 #include "draw/draw_context.h"
32 #include "draw/draw_vbuf.h"
33 #include "draw/draw_vertex.h"
34 #include "draw/draw_pt.h"
35
36 #include "pipe/p_state.h"
37
38 #include "util/u_math.h"
39 #include "util/u_memory.h"
40
41 struct pt_so_emit {
42    struct draw_context *draw;
43
44    unsigned input_vertex_stride;
45    const float (*inputs)[4];
46    const float *pre_clip_pos;
47    boolean has_so;
48    boolean use_pre_clip_pos;
49    int pos_idx;
50    unsigned emitted_primitives;
51    unsigned emitted_vertices;
52    unsigned generated_primitives;
53 };
54
55 static const struct pipe_stream_output_info *
56 draw_so_info(const struct draw_context *draw)
57 {
58    const struct pipe_stream_output_info *state = NULL;
59
60    if (draw->gs.geometry_shader) {
61       state = &draw->gs.geometry_shader->state.stream_output;
62    } else {
63       state = &draw->vs.vertex_shader->state.stream_output;
64    }
65
66    return state;
67 }
68
69 static INLINE boolean
70 draw_has_so(const struct draw_context *draw)
71 {
72    const struct pipe_stream_output_info *state = draw_so_info(draw);
73
74    if (state && state->num_outputs > 0)
75       return TRUE;
76
77    return FALSE;
78 }
79
80 void draw_pt_so_emit_prepare(struct pt_so_emit *emit, boolean use_pre_clip_pos)
81 {
82    struct draw_context *draw = emit->draw;
83
84    emit->use_pre_clip_pos = use_pre_clip_pos;
85    emit->has_so = draw_has_so(draw);
86    if (use_pre_clip_pos)
87       emit->pos_idx = draw_current_shader_position_output(draw);
88
89    /* if we have a state with outputs make sure we have
90     * buffers to output to */
91    if (emit->has_so) {
92       boolean has_valid_buffer = FALSE;
93       unsigned i;
94       for (i = 0; i < draw->so.num_targets; ++i) {
95          if (draw->so.targets[i]) {
96             has_valid_buffer = TRUE;
97             break;
98          }
99       }
100       emit->has_so = has_valid_buffer;
101    }
102
103    if (!emit->has_so)
104       return;
105
106    /* XXX: need to flush to get prim_vbuf.c to release its allocation??
107     */
108    draw_do_flush( draw, DRAW_FLUSH_BACKEND );
109 }
110
111 static void so_emit_prim(struct pt_so_emit *so,
112                          unsigned *indices,
113                          unsigned num_vertices)
114 {
115    unsigned slot, i;
116    unsigned input_vertex_stride = so->input_vertex_stride;
117    struct draw_context *draw = so->draw;
118    const float (*input_ptr)[4];
119    const float *pcp_ptr = NULL;
120    const struct pipe_stream_output_info *state = draw_so_info(draw);
121    float *buffer;
122    int buffer_total_bytes[PIPE_MAX_SO_BUFFERS];
123    boolean buffer_written[PIPE_MAX_SO_BUFFERS] = {0};
124
125    input_ptr = so->inputs;
126    if (so->use_pre_clip_pos)
127       pcp_ptr = so->pre_clip_pos;
128
129    ++so->generated_primitives;
130
131    for (i = 0; i < draw->so.num_targets; i++) {
132       struct draw_so_target *target = draw->so.targets[i];
133       if (target) {
134          buffer_total_bytes[i] = target->internal_offset +
135             target->target.buffer_offset;
136       } else {
137          buffer_total_bytes[i] = 0;
138       }
139    }
140
141    /* check have we space to emit prim first - if not don't do anything */
142    for (i = 0; i < num_vertices; ++i) {
143       unsigned ob;
144       for (slot = 0; slot < state->num_outputs; ++slot) {
145          unsigned num_comps = state->output[slot].num_components;
146          int ob = state->output[slot].output_buffer;
147          unsigned dst_offset = state->output[slot].dst_offset * sizeof(float);
148          unsigned write_size = num_comps * sizeof(float);
149          /* If a buffer is missing then that's equivalent to
150           * an overflow */
151          if (!draw->so.targets[ob]) {
152             return;
153          }
154          if ((buffer_total_bytes[ob] + write_size + dst_offset) >
155              draw->so.targets[ob]->target.buffer_size) {
156             return;
157          }
158       }
159       for (ob = 0; ob < draw->so.num_targets; ++ob) {
160          buffer_total_bytes[ob] += state->stride[ob] * sizeof(float);
161       }
162    }
163
164    for (i = 0; i < num_vertices; ++i) {
165       const float (*input)[4];
166       const float *pre_clip_pos = NULL;
167       int ob;
168
169       input = (const float (*)[4])(
170          (const char *)input_ptr + (indices[i] * input_vertex_stride));
171
172       if (pcp_ptr)
173          pre_clip_pos = (const float *)(
174          (const char *)pcp_ptr + (indices[i] * input_vertex_stride));
175
176       for (slot = 0; slot < state->num_outputs; ++slot) {
177          unsigned idx = state->output[slot].register_index;
178          unsigned start_comp = state->output[slot].start_component;
179          unsigned num_comps = state->output[slot].num_components;
180
181          ob = state->output[slot].output_buffer;
182          buffer_written[ob] = TRUE;
183
184          buffer = (float *)((char *)draw->so.targets[ob]->mapping +
185                             draw->so.targets[ob]->target.buffer_offset +
186                             draw->so.targets[ob]->internal_offset) + state->output[slot].dst_offset;
187          
188          if (idx == so->pos_idx && pcp_ptr)
189             memcpy(buffer, &pre_clip_pos[start_comp], num_comps * sizeof(float));
190          else
191             memcpy(buffer, &input[idx][start_comp], num_comps * sizeof(float));
192       }
193       for (ob = 0; ob < draw->so.num_targets; ++ob) {
194          struct draw_so_target *target = draw->so.targets[ob];
195          if (target && buffer_written[ob]) {
196             target->internal_offset += state->stride[ob] * sizeof(float);
197             target->emitted_vertices += 1;
198          }
199       }
200    }
201    so->emitted_vertices += num_vertices;
202    ++so->emitted_primitives;
203 }
204
205 static void so_point(struct pt_so_emit *so, int idx)
206 {
207    unsigned indices[1];
208
209    indices[0] = idx;
210
211    so_emit_prim(so, indices, 1);
212 }
213
214 static void so_line(struct pt_so_emit *so, int i0, int i1)
215 {
216    unsigned indices[2];
217
218    indices[0] = i0;
219    indices[1] = i1;
220
221    so_emit_prim(so, indices, 2);
222 }
223
224 static void so_tri(struct pt_so_emit *so, int i0, int i1, int i2)
225 {
226    unsigned indices[3];
227
228    indices[0] = i0;
229    indices[1] = i1;
230    indices[2] = i2;
231
232    so_emit_prim(so, indices, 3);
233 }
234
235
236 #define FUNC         so_run_linear
237 #define GET_ELT(idx) (start + (idx))
238 #include "draw_so_emit_tmp.h"
239
240
241 #define FUNC         so_run_elts
242 #define LOCAL_VARS   const ushort *elts = input_prims->elts;
243 #define GET_ELT(idx) (elts[start + (idx)])
244 #include "draw_so_emit_tmp.h"
245
246
247 void draw_pt_so_emit( struct pt_so_emit *emit,
248                       const struct draw_vertex_info *input_verts,
249                       const struct draw_prim_info *input_prims )
250 {
251    struct draw_context *draw = emit->draw;
252    struct vbuf_render *render = draw->render;
253    unsigned start, i;
254
255    if (!emit->has_so)
256       return;
257
258    if (!draw->so.num_targets)
259       return;
260
261    emit->emitted_vertices = 0;
262    emit->emitted_primitives = 0;
263    emit->generated_primitives = 0;
264    emit->input_vertex_stride = input_verts->stride;
265    if (emit->use_pre_clip_pos)
266       emit->pre_clip_pos = input_verts->verts->pre_clip_pos;
267
268    emit->inputs = (const float (*)[4])input_verts->verts->data;
269
270    /* XXX: need to flush to get prim_vbuf.c to release its allocation??*/
271    draw_do_flush( draw, DRAW_FLUSH_BACKEND );
272
273    for (start = i = 0; i < input_prims->primitive_count;
274         start += input_prims->primitive_lengths[i], i++)
275    {
276       unsigned count = input_prims->primitive_lengths[i];
277
278       if (input_prims->linear) {
279          so_run_linear(emit, input_prims, input_verts,
280                        start, count);
281       } else {
282          so_run_elts(emit, input_prims, input_verts,
283                      start, count);
284       }
285    }
286
287    render->set_stream_output_info(render,
288                                   emit->emitted_primitives,
289                                   emit->emitted_vertices,
290                                   emit->generated_primitives);
291 }
292
293
294 struct pt_so_emit *draw_pt_so_emit_create( struct draw_context *draw )
295 {
296    struct pt_so_emit *emit = CALLOC_STRUCT(pt_so_emit);
297    if (!emit)
298       return NULL;
299
300    emit->draw = draw;
301
302    return emit;
303 }
304
305 void draw_pt_so_emit_destroy( struct pt_so_emit *emit )
306 {
307    FREE(emit);
308 }