llvmpipe: disconnect vertex texture sampling from the setup
[mesa.git] / src / gallium / drivers / llvmpipe / lp_draw_arrays.c
1 /**************************************************************************
2 *
3 * Copyright 2007 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 /* Author:
29 * Brian Paul
30 * Keith Whitwell
31 */
32
33
34 #include "pipe/p_defines.h"
35 #include "pipe/p_context.h"
36 #include "util/u_prim.h"
37
38 #include "lp_context.h"
39 #include "lp_state.h"
40
41 #include "draw/draw_context.h"
42
43
44
45 /**
46 * Draw vertex arrays, with optional indexing.
47 * Basically, map the vertex buffers (and drawing surfaces), then hand off
48 * the drawing to the 'draw' module.
49 */
50 static void
51 llvmpipe_draw_range_elements(struct pipe_context *pipe,
52 struct pipe_resource *indexBuffer,
53 unsigned indexSize,
54 int indexBias,
55 unsigned min_index,
56 unsigned max_index,
57 unsigned mode, unsigned start, unsigned count)
58 {
59 struct llvmpipe_context *lp = llvmpipe_context(pipe);
60 struct draw_context *draw = lp->draw;
61 unsigned i;
62
63 if (lp->dirty)
64 llvmpipe_update_derived( lp );
65
66 /*
67 * Map vertex buffers
68 */
69 for (i = 0; i < lp->num_vertex_buffers; i++) {
70 void *buf = llvmpipe_resource_data(lp->vertex_buffer[i].buffer);
71 draw_set_mapped_vertex_buffer(draw, i, buf);
72 }
73
74 /* Map index buffer, if present */
75 if (indexBuffer) {
76 void *mapped_indexes = llvmpipe_resource_data(indexBuffer);
77 draw_set_mapped_element_buffer_range(draw, indexSize, indexBias,
78 min_index,
79 max_index,
80 mapped_indexes);
81 }
82 else {
83 /* no index/element buffer */
84 draw_set_mapped_element_buffer_range(draw, 0, 0, start,
85 start + count - 1, NULL);
86 }
87 llvmpipe_prepare_vertex_sampling(lp,
88 lp->num_vertex_sampler_views,
89 lp->vertex_sampler_views);
90
91 /* draw! */
92 draw_arrays(draw, mode, start, count);
93
94 /*
95 * unmap vertex/index buffers
96 */
97 for (i = 0; i < lp->num_vertex_buffers; i++) {
98 draw_set_mapped_vertex_buffer(draw, i, NULL);
99 }
100 if (indexBuffer) {
101 draw_set_mapped_element_buffer(draw, 0, 0, NULL);
102 }
103 llvmpipe_cleanup_vertex_sampling(lp);
104
105 /*
106 * TODO: Flush only when a user vertex/index buffer is present
107 * (or even better, modify draw module to do this
108 * internally when this condition is seen?)
109 */
110 draw_flush(draw);
111 }
112
113
114 static void
115 llvmpipe_draw_elements(struct pipe_context *pipe,
116 struct pipe_resource *indexBuffer,
117 unsigned indexSize,
118 int indexBias,
119 unsigned mode, unsigned start, unsigned count)
120 {
121 llvmpipe_draw_range_elements( pipe, indexBuffer,
122 indexSize, indexBias,
123 0, 0xffffffff,
124 mode, start, count );
125 }
126
127
128 static void
129 llvmpipe_draw_arrays(struct pipe_context *pipe, unsigned mode,
130 unsigned start, unsigned count)
131 {
132 llvmpipe_draw_elements(pipe, NULL, 0, 0, mode, start, count);
133 }
134
135
136 void
137 llvmpipe_init_draw_funcs(struct llvmpipe_context *llvmpipe)
138 {
139 llvmpipe->pipe.draw_arrays = llvmpipe_draw_arrays;
140 llvmpipe->pipe.draw_elements = llvmpipe_draw_elements;
141 llvmpipe->pipe.draw_range_elements = llvmpipe_draw_range_elements;
142 }