Merge branch 'texformat-rework'
[mesa.git] / src / gallium / drivers / i915 / i915_context.c
1 /**************************************************************************
2 *
3 * Copyright 2003 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 #include "i915_context.h"
29 #include "i915_state.h"
30 #include "i915_screen.h"
31 #include "i915_batch.h"
32 #include "i915_texture.h"
33 #include "i915_reg.h"
34
35 #include "draw/draw_context.h"
36 #include "pipe/p_defines.h"
37 #include "pipe/internal/p_winsys_screen.h"
38 #include "pipe/p_inlines.h"
39 #include "util/u_memory.h"
40 #include "pipe/p_screen.h"
41
42
43 /*
44 * Draw functions
45 */
46
47
48 static boolean
49 i915_draw_range_elements(struct pipe_context *pipe,
50 struct pipe_buffer *indexBuffer,
51 unsigned indexSize,
52 unsigned min_index,
53 unsigned max_index,
54 unsigned prim, unsigned start, unsigned count)
55 {
56 struct i915_context *i915 = i915_context(pipe);
57 struct draw_context *draw = i915->draw;
58 unsigned i;
59
60 if (i915->dirty)
61 i915_update_derived(i915);
62
63 /*
64 * Map vertex buffers
65 */
66 for (i = 0; i < i915->num_vertex_buffers; i++) {
67 void *buf = pipe_buffer_map(pipe->screen, i915->vertex_buffer[i].buffer,
68 PIPE_BUFFER_USAGE_CPU_READ);
69 draw_set_mapped_vertex_buffer(draw, i, buf);
70 }
71
72 /*
73 * Map index buffer, if present
74 */
75 if (indexBuffer) {
76 void *mapped_indexes = pipe_buffer_map(pipe->screen, indexBuffer,
77 PIPE_BUFFER_USAGE_CPU_READ);
78 draw_set_mapped_element_buffer_range(draw, indexSize,
79 min_index,
80 max_index,
81 mapped_indexes);
82 } else {
83 draw_set_mapped_element_buffer(draw, 0, NULL);
84 }
85
86
87 draw_set_mapped_constant_buffer(draw,
88 i915->current.constants[PIPE_SHADER_VERTEX],
89 (i915->current.num_user_constants[PIPE_SHADER_VERTEX] *
90 4 * sizeof(float)));
91
92 /*
93 * Do the drawing
94 */
95 draw_arrays(i915->draw, prim, start, count);
96
97 /*
98 * unmap vertex/index buffers
99 */
100 for (i = 0; i < i915->num_vertex_buffers; i++) {
101 pipe_buffer_unmap(pipe->screen, i915->vertex_buffer[i].buffer);
102 draw_set_mapped_vertex_buffer(draw, i, NULL);
103 }
104
105 if (indexBuffer) {
106 pipe_buffer_unmap(pipe->screen, indexBuffer);
107 draw_set_mapped_element_buffer_range(draw, 0, start, start + count - 1, NULL);
108 }
109
110 return TRUE;
111 }
112
113 static boolean
114 i915_draw_elements(struct pipe_context *pipe,
115 struct pipe_buffer *indexBuffer,
116 unsigned indexSize,
117 unsigned prim, unsigned start, unsigned count)
118 {
119 return i915_draw_range_elements(pipe, indexBuffer,
120 indexSize,
121 0, 0xffffffff,
122 prim, start, count);
123 }
124
125 static boolean
126 i915_draw_arrays(struct pipe_context *pipe,
127 unsigned prim, unsigned start, unsigned count)
128 {
129 return i915_draw_elements(pipe, NULL, 0, prim, start, count);
130 }
131
132
133 /*
134 * Is referenced functions
135 */
136
137
138 static unsigned int
139 i915_is_texture_referenced(struct pipe_context *pipe,
140 struct pipe_texture *texture,
141 unsigned face, unsigned level)
142 {
143 /**
144 * FIXME: Return the corrent result. We can't alays return referenced
145 * since it causes a double flush within the vbo module.
146 */
147 #if 0
148 return PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE;
149 #else
150 return 0;
151 #endif
152 }
153
154 static unsigned int
155 i915_is_buffer_referenced(struct pipe_context *pipe,
156 struct pipe_buffer *buf)
157 {
158 /**
159 * FIXME: Return the corrent result. We can't alays return referenced
160 * since it causes a double flush within the vbo module.
161 */
162 #if 0
163 return PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE;
164 #else
165 return 0;
166 #endif
167 }
168
169
170 /*
171 * Generic context functions
172 */
173
174
175 static void i915_destroy(struct pipe_context *pipe)
176 {
177 struct i915_context *i915 = i915_context(pipe);
178 int i;
179
180 draw_destroy(i915->draw);
181
182 if(i915->batch)
183 i915->iws->batchbuffer_destroy(i915->batch);
184
185 /* unbind framebuffer */
186 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
187 pipe_surface_reference(&i915->framebuffer.cbufs[i], NULL);
188 }
189 pipe_surface_reference(&i915->framebuffer.zsbuf, NULL);
190
191 FREE(i915);
192 }
193
194 struct pipe_context *
195 i915_create_context(struct pipe_screen *screen)
196 {
197 struct i915_context *i915;
198
199 i915 = CALLOC_STRUCT(i915_context);
200 if (i915 == NULL)
201 return NULL;
202
203 i915->iws = i915_screen(screen)->iws;
204 i915->base.winsys = NULL;
205 i915->base.screen = screen;
206
207 i915->base.destroy = i915_destroy;
208
209 i915->base.clear = i915_clear;
210
211 i915->base.draw_arrays = i915_draw_arrays;
212 i915->base.draw_elements = i915_draw_elements;
213 i915->base.draw_range_elements = i915_draw_range_elements;
214
215 i915->base.is_texture_referenced = i915_is_texture_referenced;
216 i915->base.is_buffer_referenced = i915_is_buffer_referenced;
217
218 /*
219 * Create drawing context and plug our rendering stage into it.
220 */
221 i915->draw = draw_create();
222 assert(i915->draw);
223 if (!debug_get_bool_option("I915_NO_VBUF", FALSE)) {
224 draw_set_rasterize_stage(i915->draw, i915_draw_vbuf_stage(i915));
225 } else {
226 draw_set_rasterize_stage(i915->draw, i915_draw_render_stage(i915));
227 }
228
229 i915_init_surface_functions(i915);
230 i915_init_state_functions(i915);
231 i915_init_flush_functions(i915);
232
233 draw_install_aaline_stage(i915->draw, &i915->base);
234 draw_install_aapoint_stage(i915->draw, &i915->base);
235
236 i915->dirty = ~0;
237 i915->hardware_dirty = ~0;
238
239 /* Batch stream debugging is a bit hacked up at the moment:
240 */
241 i915->batch = i915->iws->batchbuffer_create(i915->iws);
242
243 return &i915->base;
244 }