scons: Set the default windows platform to be windows userspace.
[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 "pipe/internal/p_winsys_screen.h"
37 #include "pipe/p_inlines.h"
38 #include "util/u_prim.h"
39
40 #include "lp_buffer.h"
41 #include "lp_context.h"
42 #include "lp_state.h"
43
44 #include "draw/draw_context.h"
45
46
47
48 boolean
49 llvmpipe_draw_arrays(struct pipe_context *pipe, unsigned mode,
50 unsigned start, unsigned count)
51 {
52 return llvmpipe_draw_elements(pipe, NULL, 0, mode, start, count);
53 }
54
55
56 /**
57 * Draw vertex arrays, with optional indexing.
58 * Basically, map the vertex buffers (and drawing surfaces), then hand off
59 * the drawing to the 'draw' module.
60 */
61 boolean
62 llvmpipe_draw_range_elements(struct pipe_context *pipe,
63 struct pipe_buffer *indexBuffer,
64 unsigned indexSize,
65 unsigned min_index,
66 unsigned max_index,
67 unsigned mode, unsigned start, unsigned count)
68 {
69 struct llvmpipe_context *lp = llvmpipe_context(pipe);
70 struct draw_context *draw = lp->draw;
71 unsigned i;
72
73 if (lp->dirty)
74 llvmpipe_update_derived( lp );
75
76 /*
77 * Map vertex buffers
78 */
79 for (i = 0; i < lp->num_vertex_buffers; i++) {
80 void *buf = llvmpipe_buffer(lp->vertex_buffer[i].buffer)->data;
81 draw_set_mapped_vertex_buffer(draw, i, buf);
82 }
83
84 /* Map index buffer, if present */
85 if (indexBuffer) {
86 void *mapped_indexes = llvmpipe_buffer(indexBuffer)->data;
87 draw_set_mapped_element_buffer_range(draw, indexSize,
88 min_index,
89 max_index,
90 mapped_indexes);
91 }
92 else {
93 /* no index/element buffer */
94 draw_set_mapped_element_buffer_range(draw, 0, start,
95 start + count - 1, NULL);
96 }
97
98 /* draw! */
99 draw_arrays(draw, mode, start, count);
100
101 /*
102 * unmap vertex/index buffers - will cause draw module to flush
103 */
104 for (i = 0; i < lp->num_vertex_buffers; i++) {
105 draw_set_mapped_vertex_buffer(draw, i, NULL);
106 }
107 if (indexBuffer) {
108 draw_set_mapped_element_buffer(draw, 0, NULL);
109 }
110
111 return TRUE;
112 }
113
114
115 boolean
116 llvmpipe_draw_elements(struct pipe_context *pipe,
117 struct pipe_buffer *indexBuffer,
118 unsigned indexSize,
119 unsigned mode, unsigned start, unsigned count)
120 {
121 return llvmpipe_draw_range_elements( pipe, indexBuffer,
122 indexSize,
123 0, 0xffffffff,
124 mode, start, count );
125 }
126
127
128 void
129 llvmpipe_set_edgeflags(struct pipe_context *pipe, const unsigned *edgeflags)
130 {
131 struct llvmpipe_context *lp = llvmpipe_context(pipe);
132 draw_set_edgeflags(lp->draw, edgeflags);
133 }