1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
34 #include "pipe/p_defines.h"
35 #include "pipe/p_context.h"
36 #include "util/u_inlines.h"
38 #include "cell_context.h"
39 #include "cell_draw_arrays.h"
40 #include "cell_state.h"
41 #include "cell_flush.h"
42 #include "cell_texture.h"
44 #include "draw/draw_context.h"
52 * Draw vertex arrays, with optional indexing.
53 * Basically, map the vertex buffers (and drawing surfaces), then hand off
54 * the drawing to the 'draw' module.
56 * XXX should the element buffer be specified/bound with a separate function?
59 cell_draw_range_elements(struct pipe_context *pipe,
60 struct pipe_resource *indexBuffer,
64 unsigned mode, unsigned start, unsigned count)
66 struct cell_context *cell = cell_context(pipe);
67 struct draw_context *draw = cell->draw;
71 cell_update_derived( cell );
74 cell_map_surfaces(cell);
80 for (i = 0; i < cell->num_vertex_buffers; i++) {
81 void *buf = cell_resource(cell->vertex_buffer[i].buffer)->data;
82 draw_set_mapped_vertex_buffer(draw, i, buf);
84 /* Map index buffer, if present */
86 void *mapped_indexes = cell_resource(indexBuffer)->data;
87 draw_set_mapped_element_buffer(draw, indexSize, mapped_indexes);
90 /* no index/element buffer */
91 draw_set_mapped_element_buffer(draw, 0, NULL);
96 draw_arrays(draw, mode, start, count);
99 * unmap vertex/index buffers - will cause draw module to flush
101 for (i = 0; i < cell->num_vertex_buffers; i++) {
102 draw_set_mapped_vertex_buffer(draw, i, NULL);
105 draw_set_mapped_element_buffer(draw, 0, NULL);
109 * TODO: Flush only when a user vertex/index buffer is present
110 * (or even better, modify draw module to do this
111 * internally when this condition is seen?)
118 cell_draw_elements(struct pipe_context *pipe,
119 struct pipe_resource *indexBuffer,
121 unsigned mode, unsigned start, unsigned count)
123 cell_draw_range_elements( pipe, indexBuffer,
126 mode, start, count );
131 cell_draw_arrays(struct pipe_context *pipe, unsigned mode,
132 unsigned start, unsigned count)
134 cell_draw_elements(pipe, NULL, 0, mode, start, count);
139 cell_init_draw_functions(struct cell_context *cell)
141 cell->pipe.draw_arrays = cell_draw_arrays;
142 cell->pipe.draw_elements = cell_draw_elements;
143 cell->pipe.draw_range_elements = cell_draw_range_elements;