r300g: minor fixups
[mesa.git] / src / gallium / drivers / r300 / r300_blit.c
1 /*
2 * Copyright 2009 Marek Olšák <maraeo@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 #include "r300_texture.h"
25
26 #include "util/u_format.h"
27
28 enum r300_blitter_op /* bitmask */
29 {
30 R300_CLEAR = 1,
31 R300_CLEAR_SURFACE = 2,
32 R300_COPY = 4
33 };
34
35 static void r300_blitter_begin(struct r300_context* r300, enum r300_blitter_op op)
36 {
37 if (r300->query_current) {
38 r300->blitter_saved_query = r300->query_current;
39 r300_stop_query(r300);
40 }
41
42 /* Yeah we have to save all those states to ensure the blitter operation
43 * is really transparent. The states will be restored by the blitter once
44 * copying is done. */
45 util_blitter_save_blend(r300->blitter, r300->blend_state.state);
46 util_blitter_save_depth_stencil_alpha(r300->blitter, r300->dsa_state.state);
47 util_blitter_save_stencil_ref(r300->blitter, &(r300->stencil_ref));
48 util_blitter_save_rasterizer(r300->blitter, r300->rs_state.state);
49 util_blitter_save_fragment_shader(r300->blitter, r300->fs.state);
50 util_blitter_save_vertex_shader(r300->blitter, r300->vs_state.state);
51 util_blitter_save_viewport(r300->blitter, &r300->viewport);
52 util_blitter_save_clip(r300->blitter, (struct pipe_clip_state*)r300->clip_state.state);
53 util_blitter_save_vertex_elements(r300->blitter, r300->velems);
54 util_blitter_save_vertex_buffers(r300->blitter, r300->vertex_buffer_count,
55 r300->vertex_buffer);
56
57 if (op & (R300_CLEAR_SURFACE | R300_COPY))
58 util_blitter_save_framebuffer(r300->blitter, r300->fb_state.state);
59
60 if (op & R300_COPY) {
61 struct r300_textures_state* state =
62 (struct r300_textures_state*)r300->textures_state.state;
63
64 util_blitter_save_fragment_sampler_states(
65 r300->blitter, state->sampler_state_count,
66 (void**)state->sampler_states);
67
68 util_blitter_save_fragment_sampler_views(
69 r300->blitter, state->sampler_view_count,
70 (struct pipe_sampler_view**)state->sampler_views);
71 }
72 }
73
74 static void r300_blitter_end(struct r300_context *r300)
75 {
76 if (r300->blitter_saved_query) {
77 r300_resume_query(r300, r300->blitter_saved_query);
78 r300->blitter_saved_query = NULL;
79 }
80 }
81
82 /* Clear currently bound buffers. */
83 static void r300_clear(struct pipe_context* pipe,
84 unsigned buffers,
85 const float* rgba,
86 double depth,
87 unsigned stencil)
88 {
89 /* My notes about fastfill:
90 *
91 * 1) Only the zbuffer is cleared.
92 *
93 * 2) The zbuffer must be micro-tiled and whole microtiles must be
94 * written. If microtiling is disabled, it locks up.
95 *
96 * 3) There is Z Mask RAM which contains a compressed zbuffer and
97 * it interacts with fastfill. We should figure out how to use it
98 * to get more performance.
99 * This is what we know about the Z Mask:
100 *
101 * Each dword of the Z Mask contains compression information
102 * for 16 4x4 pixel blocks, that is 2 bits for each block.
103 * On chips with 2 Z pipes, every other dword maps to a different
104 * pipe.
105 *
106 * 4) ZB_DEPTHCLEARVALUE is used to clear the zbuffer and the Z Mask must
107 * be equal to 0. (clear the Z Mask RAM with zeros)
108 *
109 * 5) For 16-bit zbuffer, compression causes a hung with one or
110 * two samples and should not be used.
111 *
112 * 6) FORCE_COMPRESSED_STENCIL_VALUE should be enabled for stencil clears
113 * to avoid needless decompression.
114 *
115 * 7) Fastfill must not be used if reading of compressed Z data is disabled
116 * and writing of compressed Z data is enabled (RD/WR_COMP_ENABLE),
117 * i.e. it cannot be used to compress the zbuffer.
118 *
119 * 8) ZB_CB_CLEAR does not interact with fastfill in any way.
120 *
121 * - Marek
122 */
123
124 struct r300_context* r300 = r300_context(pipe);
125 struct pipe_framebuffer_state *fb =
126 (struct pipe_framebuffer_state*)r300->fb_state.state;
127
128 /* Clear. */
129 r300_blitter_begin(r300, R300_CLEAR);
130 util_blitter_clear(r300->blitter,
131 fb->width,
132 fb->height,
133 fb->nr_cbufs,
134 buffers, rgba, depth, stencil);
135 r300_blitter_end(r300);
136 }
137
138 /* Clear a region of a color surface to a constant value. */
139 static void r300_clear_render_target(struct pipe_context *pipe,
140 struct pipe_surface *dst,
141 const float *rgba,
142 unsigned dstx, unsigned dsty,
143 unsigned width, unsigned height)
144 {
145 struct r300_context *r300 = r300_context(pipe);
146
147 r300_blitter_begin(r300, R300_CLEAR_SURFACE);
148 util_blitter_clear_render_target(r300->blitter, dst, rgba,
149 dstx, dsty, width, height);
150 r300_blitter_end(r300);
151 }
152
153 /* Clear a region of a depth stencil surface. */
154 static void r300_clear_depth_stencil(struct pipe_context *pipe,
155 struct pipe_surface *dst,
156 unsigned clear_flags,
157 double depth,
158 unsigned stencil,
159 unsigned dstx, unsigned dsty,
160 unsigned width, unsigned height)
161 {
162 struct r300_context *r300 = r300_context(pipe);
163
164 r300_blitter_begin(r300, R300_CLEAR_SURFACE);
165 util_blitter_clear_depth_stencil(r300->blitter, dst, clear_flags, depth, stencil,
166 dstx, dsty, width, height);
167 r300_blitter_end(r300);
168 }
169
170 /* Copy a block of pixels from one surface to another using HW. */
171 static void r300_hw_copy_region(struct pipe_context* pipe,
172 struct pipe_resource *dst,
173 struct pipe_subresource subdst,
174 unsigned dstx, unsigned dsty, unsigned dstz,
175 struct pipe_resource *src,
176 struct pipe_subresource subsrc,
177 unsigned srcx, unsigned srcy, unsigned srcz,
178 unsigned width, unsigned height)
179 {
180 struct r300_context* r300 = r300_context(pipe);
181
182 r300_blitter_begin(r300, R300_COPY);
183 util_blitter_copy_region(r300->blitter, dst, subdst, dstx, dsty, dstz,
184 src, subsrc, srcx, srcy, srcz, width, height,
185 TRUE);
186 r300_blitter_end(r300);
187 }
188
189 /* Copy a block of pixels from one surface to another. */
190 static void r300_resource_copy_region(struct pipe_context *pipe,
191 struct pipe_resource *dst,
192 struct pipe_subresource subdst,
193 unsigned dstx, unsigned dsty, unsigned dstz,
194 struct pipe_resource *src,
195 struct pipe_subresource subsrc,
196 unsigned srcx, unsigned srcy, unsigned srcz,
197 unsigned width, unsigned height)
198 {
199 enum pipe_format old_format = dst->format;
200 enum pipe_format new_format = old_format;
201
202 if (!pipe->screen->is_format_supported(pipe->screen,
203 old_format, src->target,
204 src->nr_samples,
205 PIPE_BIND_RENDER_TARGET |
206 PIPE_BIND_SAMPLER_VIEW, 0) &&
207 util_format_is_plain(old_format)) {
208 switch (util_format_get_blocksize(old_format)) {
209 case 1:
210 new_format = PIPE_FORMAT_I8_UNORM;
211 break;
212 case 2:
213 new_format = PIPE_FORMAT_B4G4R4A4_UNORM;
214 break;
215 case 4:
216 new_format = PIPE_FORMAT_B8G8R8A8_UNORM;
217 break;
218 case 8:
219 new_format = PIPE_FORMAT_R16G16B16A16_UNORM;
220 break;
221 default:
222 debug_printf("r300: surface_copy: Unhandled format: %s. Falling back to software.\n"
223 "r300: surface_copy: Software fallback doesn't work for tiled textures.\n",
224 util_format_short_name(old_format));
225 }
226 }
227
228 if (old_format != new_format) {
229 dst->format = new_format;
230 src->format = new_format;
231
232 r300_texture_reinterpret_format(pipe->screen,
233 dst, new_format);
234 r300_texture_reinterpret_format(pipe->screen,
235 src, new_format);
236 }
237
238 r300_hw_copy_region(pipe, dst, subdst, dstx, dsty, dstz,
239 src, subsrc, srcx, srcy, srcz, width, height);
240
241 if (old_format != new_format) {
242 dst->format = old_format;
243 src->format = old_format;
244
245 r300_texture_reinterpret_format(pipe->screen,
246 dst, old_format);
247 r300_texture_reinterpret_format(pipe->screen,
248 src, old_format);
249 }
250 }
251
252 void r300_init_blit_functions(struct r300_context *r300)
253 {
254 r300->context.clear = r300_clear;
255 r300->context.clear_render_target = r300_clear_render_target;
256 r300->context.clear_depth_stencil = r300_clear_depth_stencil;
257 r300->context.resource_copy_region = r300_resource_copy_region;
258 }