7a9c098e30f10e249dab67ee153e3624c2e4d29a
[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 "r300_context.h"
24
25 #include "r300_flush.h"
26 #include "r300_state_invariant.h"
27
28 static boolean r300_draw_range_elements(struct pipe_context* pipe,
29 struct pipe_buffer* indexBuffer,
30 unsigned indexSize,
31 unsigned minIndex,
32 unsigned maxIndex,
33 unsigned mode,
34 unsigned start,
35 unsigned count)
36 {
37 struct r300_context* r300 = r300_context(pipe);
38 int i;
39
40 for (i = 0; i < r300->vertex_buffer_count; i++) {
41 void* buf = pipe_buffer_map(pipe->screen,
42 r300->vertex_buffers[i].buffer,
43 PIPE_BUFFER_USAGE_CPU_READ);
44 draw_set_mapped_vertex_buffer(r300->draw, i, buf);
45 }
46
47 if (indexBuffer) {
48 void* indices = pipe_buffer_map(pipe->screen, indexBuffer,
49 PIPE_BUFFER_USAGE_CPU_READ);
50 draw_set_mapped_element_buffer_range(r300->draw, indexSize,
51 minIndex, maxIndex, indices);
52 } else {
53 draw_set_mapped_element_buffer(r300->draw, 0, NULL);
54 }
55
56 draw_set_mapped_constant_buffer(r300->draw,
57 r300->shader_constants[PIPE_SHADER_VERTEX].constants,
58 r300->shader_constants[PIPE_SHADER_VERTEX].count *
59 (sizeof(float) * 4));
60
61 draw_arrays(r300->draw, mode, start, count);
62
63 for (i = 0; i < r300->vertex_buffer_count; i++) {
64 pipe_buffer_unmap(pipe->screen, r300->vertex_buffers[i].buffer);
65 draw_set_mapped_vertex_buffer(r300->draw, i, NULL);
66 }
67
68 if (indexBuffer) {
69 pipe_buffer_unmap(pipe->screen, indexBuffer);
70 draw_set_mapped_element_buffer_range(r300->draw, 0, start,
71 start + count - 1, NULL);
72 }
73
74 return TRUE;
75 }
76
77 static boolean r300_draw_elements(struct pipe_context* pipe,
78 struct pipe_buffer* indexBuffer,
79 unsigned indexSize, unsigned mode,
80 unsigned start, unsigned count)
81 {
82 return r300_draw_range_elements(pipe, indexBuffer, indexSize, 0, ~0,
83 mode, start, count);
84 }
85
86 static boolean r300_draw_arrays(struct pipe_context* pipe, unsigned mode,
87 unsigned start, unsigned count)
88 {
89 return r300_draw_elements(pipe, NULL, 0, mode, start, count);
90 }
91
92 static void r300_destroy_context(struct pipe_context* context) {
93 struct r300_context* r300 = r300_context(context);
94 struct r300_query* query, * temp;
95
96 draw_destroy(r300->draw);
97
98 /* Free the OQ BO. */
99 context->screen->buffer_destroy(r300->oqbo);
100
101 /* If there are any queries pending or not destroyed, remove them now. */
102 foreach_s(query, temp, &r300->query_list) {
103 remove_from_list(query);
104 FREE(query);
105 }
106
107 FREE(r300->blend_color_state);
108 FREE(r300->rs_block);
109 FREE(r300->scissor_state);
110 FREE(r300->viewport_state);
111 FREE(r300);
112 }
113
114 static unsigned int
115 r300_is_texture_referenced( struct pipe_context *pipe,
116 struct pipe_texture *texture,
117 unsigned face, unsigned level)
118 {
119 /**
120 * FIXME: Optimize.
121 */
122
123 return PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE;
124 }
125
126 static unsigned int
127 r300_is_buffer_referenced( struct pipe_context *pipe,
128 struct pipe_buffer *buf)
129 {
130 /**
131 * FIXME: Optimize.
132 */
133
134 return PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE;
135 }
136
137 static void r300_flush_cb(void *data)
138 {
139 struct r300_context* const cs_context_copy = data;
140
141 cs_context_copy->context.flush(&cs_context_copy->context, 0, NULL);
142 }
143
144 struct pipe_context* r300_create_context(struct pipe_screen* screen,
145 struct r300_winsys* r300_winsys)
146 {
147 struct r300_context* r300 = CALLOC_STRUCT(r300_context);
148
149 if (!r300)
150 return NULL;
151
152 r300->winsys = r300_winsys;
153
154 r300->context.winsys = (struct pipe_winsys*)r300_winsys;
155 r300->context.screen = r300_screen(screen);
156
157 r300_init_debug(r300);
158
159 r300->context.destroy = r300_destroy_context;
160
161 r300->context.clear = r300_clear;
162
163 r300->context.draw_arrays = r300_draw_arrays;
164 r300->context.draw_elements = r300_draw_elements;
165 r300->context.draw_range_elements = r300_draw_range_elements;
166
167 r300->context.is_texture_referenced = r300_is_texture_referenced;
168 r300->context.is_buffer_referenced = r300_is_buffer_referenced;
169
170 r300->blend_color_state = CALLOC_STRUCT(r300_blend_color_state);
171 r300->rs_block = CALLOC_STRUCT(r300_rs_block);
172 r300->scissor_state = CALLOC_STRUCT(r300_scissor_state);
173 r300->viewport_state = CALLOC_STRUCT(r300_viewport_state);
174
175 /* Create a Draw. This is used for vert collation and SW TCL. */
176 r300->draw = draw_create();
177 /* Enable our renderer. */
178 draw_set_rasterize_stage(r300->draw, r300_draw_stage(r300));
179 /* Disable Draw's clipping if TCL is present. */
180 draw_set_driver_clipping(r300->draw, r300_screen(screen)->caps->has_tcl);
181 /* Force Draw to never do viewport transform, since (again) we can do
182 * transform in hardware, always. */
183 draw_set_viewport_state(r300->draw, &r300_viewport_identity);
184
185 /* Open up the OQ BO. */
186 r300->oqbo = screen->buffer_create(screen, 4096,
187 PIPE_BUFFER_USAGE_VERTEX, 4096);
188
189 r300_init_flush_functions(r300);
190
191 r300_init_query_functions(r300);
192
193 r300_init_surface_functions(r300);
194
195 r300_init_state_functions(r300);
196
197 r300_emit_invariant_state(r300);
198
199 r300->winsys->set_flush_cb(r300->winsys, r300_flush_cb, r300);
200 r300->dirty_state = R300_NEW_KITCHEN_SINK;
201 r300->dirty_hw++;
202 make_empty_list(&r300->query_list);
203 return &r300->context;
204 }