gallium: michel's patch to rework texture/sampler binding interface
[mesa.git] / src / gallium / auxiliary / draw / draw_aapoint.c
1 /**************************************************************************
2 *
3 * Copyright 2008 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 /**
29 * AA point stage: AA points are converted to quads and rendered with a
30 * special fragment shader. Another approach would be to use a texture
31 * map image of a point, but experiments indicate the quality isn't nearly
32 * as good as this approach.
33 *
34 * Note: this looks a lot like draw_aaline.c but there's actually little
35 * if any code that can be shared.
36 *
37 * Authors: Brian Paul
38 */
39
40
41 #include "pipe/p_util.h"
42 #include "pipe/p_inlines.h"
43 #include "pipe/p_context.h"
44 #include "pipe/p_defines.h"
45 #include "pipe/p_shader_tokens.h"
46
47 #include "tgsi/util/tgsi_transform.h"
48 #include "tgsi/util/tgsi_dump.h"
49
50 #include "draw_context.h"
51 #include "draw_private.h"
52
53
54 /*
55 * Enabling NORMALIZE might give _slightly_ better results.
56 * Basically, it controls whether we compute distance as d=sqrt(x*x+y*y) or
57 * d=x*x+y*y. Since we're working with a unit circle, the later seems
58 * close enough and saves some costly instructions.
59 */
60 #define NORMALIZE 0
61
62
63 /**
64 * Subclass of pipe_shader_state to carry extra fragment shader info.
65 */
66 struct aapoint_fragment_shader
67 {
68 struct pipe_shader_state state;
69 void *driver_fs; /**< the regular shader */
70 void *aapoint_fs; /**< the aa point-augmented shader */
71 };
72
73
74 /**
75 * Subclass of draw_stage
76 */
77 struct aapoint_stage
78 {
79 struct draw_stage stage;
80
81 int psize_slot;
82 float radius;
83
84 /** this is the vertex attrib slot for the new texcoords */
85 uint tex_slot;
86
87 /*
88 * Currently bound state
89 */
90 struct aapoint_fragment_shader *fs;
91
92 /*
93 * Driver interface/override functions
94 */
95 void * (*driver_create_fs_state)(struct pipe_context *,
96 const struct pipe_shader_state *);
97 void (*driver_bind_fs_state)(struct pipe_context *, void *);
98 void (*driver_delete_fs_state)(struct pipe_context *, void *);
99
100 struct pipe_context *pipe;
101 };
102
103
104
105 /**
106 * Subclass of tgsi_transform_context, used for transforming the
107 * user's fragment shader to add the special AA instructions.
108 */
109 struct aa_transform_context {
110 struct tgsi_transform_context base;
111 uint tempsUsed; /**< bitmask */
112 int colorOutput; /**< which output is the primary color */
113 int maxInput, maxGeneric; /**< max input index found */
114 int tmp0, colorTemp; /**< temp registers */
115 boolean firstInstruction;
116 };
117
118
119 /**
120 * TGSI declaration transform callback.
121 * Look for two free temp regs and available input reg for new texcoords.
122 */
123 static void
124 aa_transform_decl(struct tgsi_transform_context *ctx,
125 struct tgsi_full_declaration *decl)
126 {
127 struct aa_transform_context *aactx = (struct aa_transform_context *) ctx;
128
129 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
130 decl->Semantic.SemanticName == TGSI_SEMANTIC_COLOR &&
131 decl->Semantic.SemanticIndex == 0) {
132 aactx->colorOutput = decl->u.DeclarationRange.First;
133 }
134 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
135 if ((int) decl->u.DeclarationRange.Last > aactx->maxInput)
136 aactx->maxInput = decl->u.DeclarationRange.Last;
137 if (decl->Semantic.SemanticName == TGSI_SEMANTIC_GENERIC &&
138 (int) decl->Semantic.SemanticIndex > aactx->maxGeneric) {
139 aactx->maxGeneric = decl->Semantic.SemanticIndex;
140 }
141 }
142 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
143 uint i;
144 for (i = decl->u.DeclarationRange.First;
145 i <= decl->u.DeclarationRange.Last; i++) {
146 aactx->tempsUsed |= (1 << i);
147 }
148 }
149
150 ctx->emit_declaration(ctx, decl);
151 }
152
153
154 /**
155 * TGSI instruction transform callback.
156 * Replace writes to result.color w/ a temp reg.
157 * Upon END instruction, insert texture sampling code for antialiasing.
158 */
159 static void
160 aa_transform_inst(struct tgsi_transform_context *ctx,
161 struct tgsi_full_instruction *inst)
162 {
163 struct aa_transform_context *aactx = (struct aa_transform_context *) ctx;
164 struct tgsi_full_instruction newInst;
165
166 if (aactx->firstInstruction) {
167 /* emit our new declarations before the first instruction */
168
169 struct tgsi_full_declaration decl;
170 const int texInput = aactx->maxInput + 1;
171 int tmp0;
172 uint i;
173
174 /* find two free temp regs */
175 for (i = 0; i < 32; i++) {
176 if ((aactx->tempsUsed & (1 << i)) == 0) {
177 /* found a free temp */
178 if (aactx->tmp0 < 0)
179 aactx->tmp0 = i;
180 else if (aactx->colorTemp < 0)
181 aactx->colorTemp = i;
182 else
183 break;
184 }
185 }
186
187 assert(aactx->colorTemp != aactx->tmp0);
188
189 tmp0 = aactx->tmp0;
190
191 /* declare new generic input/texcoord */
192 decl = tgsi_default_full_declaration();
193 decl.Declaration.File = TGSI_FILE_INPUT;
194 decl.Declaration.Semantic = 1;
195 decl.Semantic.SemanticName = TGSI_SEMANTIC_GENERIC;
196 decl.Semantic.SemanticIndex = aactx->maxGeneric + 1;
197 decl.Declaration.Interpolate = 1;
198 /* XXX this could be linear... */
199 decl.Interpolation.Interpolate = TGSI_INTERPOLATE_PERSPECTIVE;
200 decl.u.DeclarationRange.First =
201 decl.u.DeclarationRange.Last = texInput;
202 ctx->emit_declaration(ctx, &decl);
203
204 /* declare new temp regs */
205 decl = tgsi_default_full_declaration();
206 decl.Declaration.File = TGSI_FILE_TEMPORARY;
207 decl.u.DeclarationRange.First =
208 decl.u.DeclarationRange.Last = tmp0;
209 ctx->emit_declaration(ctx, &decl);
210
211 decl = tgsi_default_full_declaration();
212 decl.Declaration.File = TGSI_FILE_TEMPORARY;
213 decl.u.DeclarationRange.First =
214 decl.u.DeclarationRange.Last = aactx->colorTemp;
215 ctx->emit_declaration(ctx, &decl);
216
217 aactx->firstInstruction = FALSE;
218
219
220 /*
221 * Emit code to compute fragment coverage, kill if outside point radius
222 *
223 * Temp reg0 usage:
224 * t0.x = distance of fragment from center point
225 * t0.y = boolean, is t0.x > 1.0, also misc temp usage
226 * t0.z = temporary for computing 1/(1-k) value
227 * t0.w = final coverage value
228 */
229
230 /* MUL t0.xy, tex, tex; # compute x^2, y^2 */
231 newInst = tgsi_default_full_instruction();
232 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
233 newInst.Instruction.NumDstRegs = 1;
234 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
235 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
236 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_XY;
237 newInst.Instruction.NumSrcRegs = 2;
238 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_INPUT;
239 newInst.FullSrcRegisters[0].SrcRegister.Index = texInput;
240 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_INPUT;
241 newInst.FullSrcRegisters[1].SrcRegister.Index = texInput;
242 ctx->emit_instruction(ctx, &newInst);
243
244 /* ADD t0.x, t0.x, t0.y; # x^2 + y^2 */
245 newInst = tgsi_default_full_instruction();
246 newInst.Instruction.Opcode = TGSI_OPCODE_ADD;
247 newInst.Instruction.NumDstRegs = 1;
248 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
249 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
250 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_X;
251 newInst.Instruction.NumSrcRegs = 2;
252 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
253 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
254 newInst.FullSrcRegisters[0].SrcRegister.SwizzleX = TGSI_SWIZZLE_X;
255 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_TEMPORARY;
256 newInst.FullSrcRegisters[1].SrcRegister.Index = tmp0;
257 newInst.FullSrcRegisters[1].SrcRegister.SwizzleX = TGSI_SWIZZLE_Y;
258 ctx->emit_instruction(ctx, &newInst);
259
260 #if NORMALIZE /* OPTIONAL normalization of length */
261 /* RSQ t0.x, t0.x; */
262 newInst = tgsi_default_full_instruction();
263 newInst.Instruction.Opcode = TGSI_OPCODE_RSQ;
264 newInst.Instruction.NumDstRegs = 1;
265 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
266 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
267 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_X;
268 newInst.Instruction.NumSrcRegs = 1;
269 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
270 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
271 ctx->emit_instruction(ctx, &newInst);
272
273 /* RCP t0.x, t0.x; */
274 newInst = tgsi_default_full_instruction();
275 newInst.Instruction.Opcode = TGSI_OPCODE_RCP;
276 newInst.Instruction.NumDstRegs = 1;
277 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
278 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
279 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_X;
280 newInst.Instruction.NumSrcRegs = 1;
281 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
282 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
283 ctx->emit_instruction(ctx, &newInst);
284 #endif
285
286 /* SGT t0.y, t0.xxxx, t0.wwww; # bool b = d > 1 (NOTE t0.w == 1) */
287 newInst = tgsi_default_full_instruction();
288 newInst.Instruction.Opcode = TGSI_OPCODE_SGT;
289 newInst.Instruction.NumDstRegs = 1;
290 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
291 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
292 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_Y;
293 newInst.Instruction.NumSrcRegs = 2;
294 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
295 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
296 newInst.FullSrcRegisters[0].SrcRegister.SwizzleY = TGSI_SWIZZLE_X;
297 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_INPUT;
298 newInst.FullSrcRegisters[1].SrcRegister.Index = texInput;
299 newInst.FullSrcRegisters[1].SrcRegister.SwizzleY = TGSI_SWIZZLE_W;
300 ctx->emit_instruction(ctx, &newInst);
301
302 /* KILP -t0.yyyy; # if b, KILL */
303 newInst = tgsi_default_full_instruction();
304 newInst.Instruction.Opcode = TGSI_OPCODE_KILP;
305 newInst.Instruction.NumDstRegs = 0;
306 newInst.Instruction.NumSrcRegs = 1;
307 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
308 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
309 newInst.FullSrcRegisters[0].SrcRegister.SwizzleX = TGSI_SWIZZLE_Y;
310 newInst.FullSrcRegisters[0].SrcRegister.SwizzleY = TGSI_SWIZZLE_Y;
311 newInst.FullSrcRegisters[0].SrcRegister.SwizzleZ = TGSI_SWIZZLE_Y;
312 newInst.FullSrcRegisters[0].SrcRegister.SwizzleW = TGSI_SWIZZLE_Y;
313 newInst.FullSrcRegisters[0].SrcRegister.Negate = 1;
314 ctx->emit_instruction(ctx, &newInst);
315
316
317 /* compute coverage factor = (1-d)/(1-k) */
318
319 /* SUB t0.z, tex.w, tex.z; # m = 1 - k */
320 newInst = tgsi_default_full_instruction();
321 newInst.Instruction.Opcode = TGSI_OPCODE_SUB;
322 newInst.Instruction.NumDstRegs = 1;
323 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
324 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
325 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_Z;
326 newInst.Instruction.NumSrcRegs = 2;
327 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_INPUT;
328 newInst.FullSrcRegisters[0].SrcRegister.Index = texInput;
329 newInst.FullSrcRegisters[0].SrcRegister.SwizzleZ = TGSI_SWIZZLE_W;
330 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_INPUT;
331 newInst.FullSrcRegisters[1].SrcRegister.Index = texInput;
332 newInst.FullSrcRegisters[1].SrcRegister.SwizzleZ = TGSI_SWIZZLE_Z;
333 ctx->emit_instruction(ctx, &newInst);
334
335 /* RCP t0.z, t0.z; # t0.z = 1 / m */
336 newInst = tgsi_default_full_instruction();
337 newInst.Instruction.Opcode = TGSI_OPCODE_RCP;
338 newInst.Instruction.NumDstRegs = 1;
339 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
340 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
341 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_Z;
342 newInst.Instruction.NumSrcRegs = 1;
343 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
344 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
345 newInst.FullSrcRegisters[0].SrcRegister.SwizzleX = TGSI_SWIZZLE_Z;
346 ctx->emit_instruction(ctx, &newInst);
347
348 /* SUB t0.y, 1, t0.x; # d = 1 - d */
349 newInst = tgsi_default_full_instruction();
350 newInst.Instruction.Opcode = TGSI_OPCODE_SUB;
351 newInst.Instruction.NumDstRegs = 1;
352 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
353 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
354 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_Y;
355 newInst.Instruction.NumSrcRegs = 2;
356 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_INPUT;
357 newInst.FullSrcRegisters[0].SrcRegister.Index = texInput;
358 newInst.FullSrcRegisters[0].SrcRegister.SwizzleY = TGSI_SWIZZLE_W;
359 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_TEMPORARY;
360 newInst.FullSrcRegisters[1].SrcRegister.Index = tmp0;
361 newInst.FullSrcRegisters[1].SrcRegister.SwizzleY = TGSI_SWIZZLE_X;
362 ctx->emit_instruction(ctx, &newInst);
363
364 /* MUL t0.w, t0.y, t0.z; # coverage = d * m */
365 newInst = tgsi_default_full_instruction();
366 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
367 newInst.Instruction.NumDstRegs = 1;
368 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
369 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
370 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_W;
371 newInst.Instruction.NumSrcRegs = 2;
372 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
373 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
374 newInst.FullSrcRegisters[0].SrcRegister.SwizzleW = TGSI_SWIZZLE_Y;
375 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_TEMPORARY;
376 newInst.FullSrcRegisters[1].SrcRegister.Index = tmp0;
377 newInst.FullSrcRegisters[1].SrcRegister.SwizzleW = TGSI_SWIZZLE_Z;
378 ctx->emit_instruction(ctx, &newInst);
379
380 /* SLE t0.y, t0.x, tex.z; # bool b = distance <= k */
381 newInst = tgsi_default_full_instruction();
382 newInst.Instruction.Opcode = TGSI_OPCODE_SLE;
383 newInst.Instruction.NumDstRegs = 1;
384 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
385 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
386 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_Y;
387 newInst.Instruction.NumSrcRegs = 2;
388 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
389 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
390 newInst.FullSrcRegisters[0].SrcRegister.SwizzleY = TGSI_SWIZZLE_X;
391 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_INPUT;
392 newInst.FullSrcRegisters[1].SrcRegister.Index = texInput;
393 newInst.FullSrcRegisters[1].SrcRegister.SwizzleY = TGSI_SWIZZLE_Z;
394 ctx->emit_instruction(ctx, &newInst);
395
396 /* CMP t0.w, -t0.y, tex.w, t0.w;
397 * # if -t0.y < 0 then
398 * t0.w = 1
399 * else
400 * t0.w = t0.w
401 */
402 newInst = tgsi_default_full_instruction();
403 newInst.Instruction.Opcode = TGSI_OPCODE_CMP;
404 newInst.Instruction.NumDstRegs = 1;
405 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_TEMPORARY;
406 newInst.FullDstRegisters[0].DstRegister.Index = tmp0;
407 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_W;
408 newInst.Instruction.NumSrcRegs = 3;
409 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
410 newInst.FullSrcRegisters[0].SrcRegister.Index = tmp0;
411 newInst.FullSrcRegisters[0].SrcRegister.SwizzleX = TGSI_SWIZZLE_Y;
412 newInst.FullSrcRegisters[0].SrcRegister.SwizzleY = TGSI_SWIZZLE_Y;
413 newInst.FullSrcRegisters[0].SrcRegister.SwizzleZ = TGSI_SWIZZLE_Y;
414 newInst.FullSrcRegisters[0].SrcRegister.SwizzleW = TGSI_SWIZZLE_Y;
415 newInst.FullSrcRegisters[0].SrcRegister.Negate = 1;
416 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_INPUT;
417 newInst.FullSrcRegisters[1].SrcRegister.Index = texInput;
418 newInst.FullSrcRegisters[1].SrcRegister.SwizzleX = TGSI_SWIZZLE_W;
419 newInst.FullSrcRegisters[1].SrcRegister.SwizzleY = TGSI_SWIZZLE_W;
420 newInst.FullSrcRegisters[1].SrcRegister.SwizzleZ = TGSI_SWIZZLE_W;
421 newInst.FullSrcRegisters[1].SrcRegister.SwizzleW = TGSI_SWIZZLE_W;
422 newInst.FullSrcRegisters[2].SrcRegister.File = TGSI_FILE_TEMPORARY;
423 newInst.FullSrcRegisters[2].SrcRegister.Index = tmp0;
424 newInst.FullSrcRegisters[2].SrcRegister.SwizzleX = TGSI_SWIZZLE_W;
425 newInst.FullSrcRegisters[2].SrcRegister.SwizzleY = TGSI_SWIZZLE_W;
426 newInst.FullSrcRegisters[2].SrcRegister.SwizzleZ = TGSI_SWIZZLE_W;
427 newInst.FullSrcRegisters[2].SrcRegister.SwizzleW = TGSI_SWIZZLE_W;
428 ctx->emit_instruction(ctx, &newInst);
429
430 }
431
432 if (inst->Instruction.Opcode == TGSI_OPCODE_END) {
433 /* add alpha modulation code at tail of program */
434
435 /* MOV result.color.xyz, colorTemp; */
436 newInst = tgsi_default_full_instruction();
437 newInst.Instruction.Opcode = TGSI_OPCODE_MOV;
438 newInst.Instruction.NumDstRegs = 1;
439 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_OUTPUT;
440 newInst.FullDstRegisters[0].DstRegister.Index = aactx->colorOutput;
441 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_XYZ;
442 newInst.Instruction.NumSrcRegs = 1;
443 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
444 newInst.FullSrcRegisters[0].SrcRegister.Index = aactx->colorTemp;
445 ctx->emit_instruction(ctx, &newInst);
446
447 /* MUL result.color.w, colorTemp, tmp0.w; */
448 newInst = tgsi_default_full_instruction();
449 newInst.Instruction.Opcode = TGSI_OPCODE_MUL;
450 newInst.Instruction.NumDstRegs = 1;
451 newInst.FullDstRegisters[0].DstRegister.File = TGSI_FILE_OUTPUT;
452 newInst.FullDstRegisters[0].DstRegister.Index = aactx->colorOutput;
453 newInst.FullDstRegisters[0].DstRegister.WriteMask = TGSI_WRITEMASK_W;
454 newInst.Instruction.NumSrcRegs = 2;
455 newInst.FullSrcRegisters[0].SrcRegister.File = TGSI_FILE_TEMPORARY;
456 newInst.FullSrcRegisters[0].SrcRegister.Index = aactx->colorTemp;
457 newInst.FullSrcRegisters[1].SrcRegister.File = TGSI_FILE_TEMPORARY;
458 newInst.FullSrcRegisters[1].SrcRegister.Index = aactx->tmp0;
459 ctx->emit_instruction(ctx, &newInst);
460 }
461 else {
462 /* Not an END instruction.
463 * Look for writes to result.color and replace with colorTemp reg.
464 */
465 uint i;
466
467 for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
468 struct tgsi_full_dst_register *dst = &inst->FullDstRegisters[i];
469 if (dst->DstRegister.File == TGSI_FILE_OUTPUT &&
470 dst->DstRegister.Index == aactx->colorOutput) {
471 dst->DstRegister.File = TGSI_FILE_TEMPORARY;
472 dst->DstRegister.Index = aactx->colorTemp;
473 }
474 }
475 }
476
477 ctx->emit_instruction(ctx, inst);
478 }
479
480
481 /**
482 * Generate the frag shader we'll use for drawing AA lines.
483 * This will be the user's shader plus some texture/modulate instructions.
484 */
485 static void
486 generate_aapoint_fs(struct aapoint_stage *aapoint)
487 {
488 const struct pipe_shader_state *orig_fs = &aapoint->fs->state;
489 struct draw_context *draw = aapoint->stage.draw;
490 struct pipe_shader_state aapoint_fs;
491 struct aa_transform_context transform;
492
493 #define MAX 1000
494
495 aapoint_fs = *orig_fs; /* copy to init */
496 aapoint_fs.tokens = MALLOC(sizeof(struct tgsi_token) * MAX);
497
498 memset(&transform, 0, sizeof(transform));
499 transform.colorOutput = -1;
500 transform.maxInput = -1;
501 transform.maxGeneric = -1;
502 transform.colorTemp = -1;
503 transform.tmp0 = -1;
504 transform.firstInstruction = TRUE;
505 transform.base.transform_instruction = aa_transform_inst;
506 transform.base.transform_declaration = aa_transform_decl;
507
508 tgsi_transform_shader(orig_fs->tokens,
509 (struct tgsi_token *) aapoint_fs.tokens,
510 MAX, &transform.base);
511
512 #if 0 /* DEBUG */
513 tgsi_dump(orig_fs->tokens, 0);
514 tgsi_dump(aapoint_fs.tokens, 0);
515 #endif
516
517 #if 1 /* XXX remove */
518 aapoint_fs.input_semantic_name[aapoint_fs.num_inputs] = TGSI_SEMANTIC_GENERIC;
519 aapoint_fs.input_semantic_index[aapoint_fs.num_inputs] = transform.maxGeneric + 1;
520 aapoint_fs.num_inputs++;
521 #endif
522
523 aapoint->fs->aapoint_fs
524 = aapoint->driver_create_fs_state(aapoint->pipe, &aapoint_fs);
525
526 /* advertise the extra post-transform vertex attributes which will have
527 * the texcoords.
528 */
529 draw->extra_vp_outputs.semantic_name = TGSI_SEMANTIC_GENERIC;
530 draw->extra_vp_outputs.semantic_index = transform.maxGeneric + 1;
531 }
532
533
534 /**
535 * When we're about to draw our first AA line in a batch, this function is
536 * called to tell the driver to bind our modified fragment shader.
537 */
538 static void
539 bind_aapoint_fragment_shader(struct aapoint_stage *aapoint)
540 {
541 if (!aapoint->fs->aapoint_fs) {
542 generate_aapoint_fs(aapoint);
543 }
544 aapoint->driver_bind_fs_state(aapoint->pipe, aapoint->fs->aapoint_fs);
545 }
546
547
548
549 static INLINE struct aapoint_stage *
550 aapoint_stage( struct draw_stage *stage )
551 {
552 return (struct aapoint_stage *) stage;
553 }
554
555
556 static void
557 passthrough_line(struct draw_stage *stage, struct prim_header *header)
558 {
559 stage->next->line(stage->next, header);
560 }
561
562
563 static void
564 passthrough_tri(struct draw_stage *stage, struct prim_header *header)
565 {
566 stage->next->tri(stage->next, header);
567 }
568
569
570 /**
571 * Draw an AA point by drawing a quad.
572 */
573 static void
574 aapoint_point(struct draw_stage *stage, struct prim_header *header)
575 {
576 const struct aapoint_stage *aapoint = aapoint_stage(stage);
577 struct prim_header tri;
578 struct vertex_header *v[4];
579 uint texPos = aapoint->tex_slot;
580 float radius, *pos, *tex;
581 uint i;
582 float k;
583
584 if (aapoint->psize_slot >= 0) {
585 radius = 0.5f * header->v[0]->data[aapoint->psize_slot][0];
586 }
587 else {
588 radius = aapoint->radius;
589 }
590
591 /*
592 * Note: the texcoords (generic attrib, really) we use are special:
593 * The S and T components simply vary from -1 to +1.
594 * The R component is k, below.
595 * The Q component is 1.0 and will used as a handy constant in the
596 * fragment shader.
597 */
598
599 /*
600 * k is the threshold distance from the point's center at which
601 * we begin alpha attenuation (the coverage value).
602 * Operating within a unit circle, we'll compute the fragment's
603 * distance 'd' from the center point using the texcoords.
604 * IF d > 1.0 THEN
605 * KILL fragment
606 * ELSE IF d > k THEN
607 * compute coverage in [0,1] proportional to d in [k, 1].
608 * ELSE
609 * coverage = 1.0; // full coverage
610 * ENDIF
611 *
612 * Note: the ELSEIF and ELSE clauses are actually implemented with CMP to
613 * avoid using IF/ELSE/ENDIF TGSI opcodes.
614 */
615
616 #if !NORMALIZE
617 k = 1.0f / radius;
618 k = 1.0f - 2.0f * k + k * k;
619 #else
620 k = 1.0f - 1.0f / radius;
621 #endif
622
623 /* allocate/dup new verts */
624 for (i = 0; i < 4; i++) {
625 v[i] = dup_vert(stage, header->v[0], i);
626 }
627
628 /* new verts */
629 pos = v[0]->data[0];
630 pos[0] -= radius;
631 pos[1] -= radius;
632
633 pos = v[1]->data[0];
634 pos[0] += radius;
635 pos[1] -= radius;
636
637 pos = v[2]->data[0];
638 pos[0] += radius;
639 pos[1] += radius;
640
641 pos = v[3]->data[0];
642 pos[0] -= radius;
643 pos[1] += radius;
644
645 /* new texcoords */
646 tex = v[0]->data[texPos];
647 ASSIGN_4V(tex, -1, -1, k, 1);
648
649 tex = v[1]->data[texPos];
650 ASSIGN_4V(tex, 1, -1, k, 1);
651
652 tex = v[2]->data[texPos];
653 ASSIGN_4V(tex, 1, 1, k, 1);
654
655 tex = v[3]->data[texPos];
656 ASSIGN_4V(tex, -1, 1, k, 1);
657
658 /* emit 2 tris for the quad strip */
659 tri.v[0] = v[0];
660 tri.v[1] = v[1];
661 tri.v[2] = v[2];
662 stage->next->tri( stage->next, &tri );
663
664 tri.v[0] = v[0];
665 tri.v[1] = v[2];
666 tri.v[2] = v[3];
667 stage->next->tri( stage->next, &tri );
668 }
669
670
671 static void
672 aapoint_first_point(struct draw_stage *stage, struct prim_header *header)
673 {
674 auto struct aapoint_stage *aapoint = aapoint_stage(stage);
675 struct draw_context *draw = stage->draw;
676
677 assert(draw->rasterizer->point_smooth);
678
679 if (draw->rasterizer->point_size <= 2.0)
680 aapoint->radius = 1.0;
681 else
682 aapoint->radius = 0.5f * draw->rasterizer->point_size;
683
684 aapoint->tex_slot = draw->num_vs_outputs;
685 assert(aapoint->tex_slot > 0); /* output[0] is vertex pos */
686 draw->extra_vp_outputs.slot = aapoint->tex_slot;
687
688 /*
689 * Bind our fragprog.
690 */
691 bind_aapoint_fragment_shader(aapoint);
692
693 /* find psize slot in post-transform vertex */
694 aapoint->psize_slot = -1;
695 if (draw->rasterizer->point_size_per_vertex) {
696 /* find PSIZ vertex output */
697 const struct draw_vertex_shader *vs = draw->vertex_shader;
698 uint i;
699 for (i = 0; i < vs->info.num_outputs; i++) {
700 if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_PSIZE) {
701 aapoint->psize_slot = i;
702 break;
703 }
704 }
705 }
706
707 /* now really draw first line */
708 stage->point = aapoint_point;
709 stage->point(stage, header);
710 }
711
712
713 static void
714 aapoint_flush(struct draw_stage *stage, unsigned flags)
715 {
716 struct draw_context *draw = stage->draw;
717 struct aapoint_stage *aapoint = aapoint_stage(stage);
718 struct pipe_context *pipe = aapoint->pipe;
719
720 stage->point = aapoint_first_point;
721 stage->next->flush( stage->next, flags );
722
723 /* restore original frag shader */
724 aapoint->driver_bind_fs_state(pipe, aapoint->fs->driver_fs);
725
726 draw->extra_vp_outputs.slot = 0;
727 }
728
729
730 static void
731 aapoint_reset_stipple_counter(struct draw_stage *stage)
732 {
733 stage->next->reset_stipple_counter( stage->next );
734 }
735
736
737 static void
738 aapoint_destroy(struct draw_stage *stage)
739 {
740 draw_free_temp_verts( stage );
741 FREE( stage );
742 }
743
744
745 static struct aapoint_stage *
746 draw_aapoint_stage(struct draw_context *draw)
747 {
748 struct aapoint_stage *aapoint = CALLOC_STRUCT(aapoint_stage);
749
750 draw_alloc_temp_verts( &aapoint->stage, 4 );
751
752 aapoint->stage.draw = draw;
753 aapoint->stage.next = NULL;
754 aapoint->stage.point = aapoint_first_point;
755 aapoint->stage.line = passthrough_line;
756 aapoint->stage.tri = passthrough_tri;
757 aapoint->stage.flush = aapoint_flush;
758 aapoint->stage.reset_stipple_counter = aapoint_reset_stipple_counter;
759 aapoint->stage.destroy = aapoint_destroy;
760
761 return aapoint;
762 }
763
764
765 static struct aapoint_stage *
766 aapoint_stage_from_pipe(struct pipe_context *pipe)
767 {
768 struct draw_context *draw = (struct draw_context *) pipe->draw;
769 return aapoint_stage(draw->pipeline.aapoint);
770 }
771
772
773 /**
774 * This function overrides the driver's create_fs_state() function and
775 * will typically be called by the state tracker.
776 */
777 static void *
778 aapoint_create_fs_state(struct pipe_context *pipe,
779 const struct pipe_shader_state *fs)
780 {
781 struct aapoint_stage *aapoint = aapoint_stage_from_pipe(pipe);
782 struct aapoint_fragment_shader *aafs = CALLOC_STRUCT(aapoint_fragment_shader);
783
784 if (aafs) {
785 aafs->state = *fs;
786
787 /* pass-through */
788 aafs->driver_fs = aapoint->driver_create_fs_state(aapoint->pipe, fs);
789 }
790
791 return aafs;
792 }
793
794
795 static void
796 aapoint_bind_fs_state(struct pipe_context *pipe, void *fs)
797 {
798 struct aapoint_stage *aapoint = aapoint_stage_from_pipe(pipe);
799 struct aapoint_fragment_shader *aafs = (struct aapoint_fragment_shader *) fs;
800 /* save current */
801 aapoint->fs = aafs;
802 /* pass-through */
803 aapoint->driver_bind_fs_state(aapoint->pipe, aafs->driver_fs);
804 }
805
806
807 static void
808 aapoint_delete_fs_state(struct pipe_context *pipe, void *fs)
809 {
810 struct aapoint_stage *aapoint = aapoint_stage_from_pipe(pipe);
811 struct aapoint_fragment_shader *aafs = (struct aapoint_fragment_shader *) fs;
812 /* pass-through */
813 aapoint->driver_delete_fs_state(aapoint->pipe, aafs->driver_fs);
814 FREE(aafs);
815 }
816
817
818 /**
819 * Called by drivers that want to install this AA point prim stage
820 * into the draw module's pipeline. This will not be used if the
821 * hardware has native support for AA points.
822 */
823 void
824 draw_install_aapoint_stage(struct draw_context *draw,
825 struct pipe_context *pipe)
826 {
827 struct aapoint_stage *aapoint;
828
829 pipe->draw = (void *) draw;
830
831 /*
832 * Create / install AA point drawing / prim stage
833 */
834 aapoint = draw_aapoint_stage( draw );
835 assert(aapoint);
836 draw->pipeline.aapoint = &aapoint->stage;
837
838 aapoint->pipe = pipe;
839
840 /* save original driver functions */
841 aapoint->driver_create_fs_state = pipe->create_fs_state;
842 aapoint->driver_bind_fs_state = pipe->bind_fs_state;
843 aapoint->driver_delete_fs_state = pipe->delete_fs_state;
844
845 /* override the driver's functions */
846 pipe->create_fs_state = aapoint_create_fs_state;
847 pipe->bind_fs_state = aapoint_bind_fs_state;
848 pipe->delete_fs_state = aapoint_delete_fs_state;
849 }