r300g: add support for all missing non-FP sampler formats
[mesa.git] / src / gallium / drivers / r300 / r300_state_inlines.h
1 /*
2 * Copyright 2009 Joakim Sindholt <opensource@zhasha.com>
3 * Corbin Simpson <MostAwesomeDude@gmail.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23
24 #ifndef R300_STATE_INLINES_H
25 #define R300_STATE_INLINES_H
26
27 #include "draw/draw_vertex.h"
28
29 #include "pipe/p_format.h"
30
31 #include "util/u_format.h"
32
33 #include "r300_reg.h"
34
35 /* Some maths. These should probably find their way to u_math, if needed. */
36
37 static INLINE int pack_float_16_6x(float f) {
38 return ((int)(f * 6.0) & 0xffff);
39 }
40
41 /* Blend state. */
42
43 static INLINE uint32_t r300_translate_blend_function(int blend_func)
44 {
45 switch (blend_func) {
46 case PIPE_BLEND_ADD:
47 return R300_COMB_FCN_ADD_CLAMP;
48 case PIPE_BLEND_SUBTRACT:
49 return R300_COMB_FCN_SUB_CLAMP;
50 case PIPE_BLEND_REVERSE_SUBTRACT:
51 return R300_COMB_FCN_RSUB_CLAMP;
52 case PIPE_BLEND_MIN:
53 return R300_COMB_FCN_MIN;
54 case PIPE_BLEND_MAX:
55 return R300_COMB_FCN_MAX;
56 default:
57 debug_printf("r300: Unknown blend function %d\n", blend_func);
58 assert(0);
59 break;
60 }
61 return 0;
62 }
63
64 /* XXX we can also offer the D3D versions of some of these... */
65 static INLINE uint32_t r300_translate_blend_factor(int blend_fact)
66 {
67 switch (blend_fact) {
68 case PIPE_BLENDFACTOR_ONE:
69 return R300_BLEND_GL_ONE;
70 case PIPE_BLENDFACTOR_SRC_COLOR:
71 return R300_BLEND_GL_SRC_COLOR;
72 case PIPE_BLENDFACTOR_SRC_ALPHA:
73 return R300_BLEND_GL_SRC_ALPHA;
74 case PIPE_BLENDFACTOR_DST_ALPHA:
75 return R300_BLEND_GL_DST_ALPHA;
76 case PIPE_BLENDFACTOR_DST_COLOR:
77 return R300_BLEND_GL_DST_COLOR;
78 case PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE:
79 return R300_BLEND_GL_SRC_ALPHA_SATURATE;
80 case PIPE_BLENDFACTOR_CONST_COLOR:
81 return R300_BLEND_GL_CONST_COLOR;
82 case PIPE_BLENDFACTOR_CONST_ALPHA:
83 return R300_BLEND_GL_CONST_ALPHA;
84 case PIPE_BLENDFACTOR_ZERO:
85 return R300_BLEND_GL_ZERO;
86 case PIPE_BLENDFACTOR_INV_SRC_COLOR:
87 return R300_BLEND_GL_ONE_MINUS_SRC_COLOR;
88 case PIPE_BLENDFACTOR_INV_SRC_ALPHA:
89 return R300_BLEND_GL_ONE_MINUS_SRC_ALPHA;
90 case PIPE_BLENDFACTOR_INV_DST_ALPHA:
91 return R300_BLEND_GL_ONE_MINUS_DST_ALPHA;
92 case PIPE_BLENDFACTOR_INV_DST_COLOR:
93 return R300_BLEND_GL_ONE_MINUS_DST_COLOR;
94 case PIPE_BLENDFACTOR_INV_CONST_COLOR:
95 return R300_BLEND_GL_ONE_MINUS_CONST_COLOR;
96 case PIPE_BLENDFACTOR_INV_CONST_ALPHA:
97 return R300_BLEND_GL_ONE_MINUS_CONST_ALPHA;
98
99 case PIPE_BLENDFACTOR_SRC1_COLOR:
100 case PIPE_BLENDFACTOR_SRC1_ALPHA:
101 case PIPE_BLENDFACTOR_INV_SRC1_COLOR:
102 case PIPE_BLENDFACTOR_INV_SRC1_ALPHA:
103 debug_printf("r300: Implementation error: "
104 "Bad blend factor %d not supported!\n", blend_fact);
105 assert(0);
106 break;
107
108 default:
109 debug_printf("r300: Unknown blend factor %d\n", blend_fact);
110 assert(0);
111 break;
112 }
113 return 0;
114 }
115
116 /* DSA state. */
117
118 static INLINE uint32_t r300_translate_depth_stencil_function(int zs_func)
119 {
120 switch (zs_func) {
121 case PIPE_FUNC_NEVER:
122 return R300_ZS_NEVER;
123 case PIPE_FUNC_LESS:
124 return R300_ZS_LESS;
125 case PIPE_FUNC_EQUAL:
126 return R300_ZS_EQUAL;
127 case PIPE_FUNC_LEQUAL:
128 return R300_ZS_LEQUAL;
129 case PIPE_FUNC_GREATER:
130 return R300_ZS_GREATER;
131 case PIPE_FUNC_NOTEQUAL:
132 return R300_ZS_NOTEQUAL;
133 case PIPE_FUNC_GEQUAL:
134 return R300_ZS_GEQUAL;
135 case PIPE_FUNC_ALWAYS:
136 return R300_ZS_ALWAYS;
137 default:
138 debug_printf("r300: Unknown depth/stencil function %d\n",
139 zs_func);
140 assert(0);
141 break;
142 }
143 return 0;
144 }
145
146 static INLINE uint32_t r300_translate_stencil_op(int s_op)
147 {
148 switch (s_op) {
149 case PIPE_STENCIL_OP_KEEP:
150 return R300_ZS_KEEP;
151 case PIPE_STENCIL_OP_ZERO:
152 return R300_ZS_ZERO;
153 case PIPE_STENCIL_OP_REPLACE:
154 return R300_ZS_REPLACE;
155 case PIPE_STENCIL_OP_INCR:
156 return R300_ZS_INCR;
157 case PIPE_STENCIL_OP_DECR:
158 return R300_ZS_DECR;
159 case PIPE_STENCIL_OP_INCR_WRAP:
160 return R300_ZS_INCR_WRAP;
161 case PIPE_STENCIL_OP_DECR_WRAP:
162 return R300_ZS_DECR_WRAP;
163 case PIPE_STENCIL_OP_INVERT:
164 return R300_ZS_INVERT;
165 default:
166 debug_printf("r300: Unknown stencil op %d", s_op);
167 assert(0);
168 break;
169 }
170 return 0;
171 }
172
173 static INLINE uint32_t r300_translate_alpha_function(int alpha_func)
174 {
175 switch (alpha_func) {
176 case PIPE_FUNC_NEVER:
177 return R300_FG_ALPHA_FUNC_NEVER;
178 case PIPE_FUNC_LESS:
179 return R300_FG_ALPHA_FUNC_LESS;
180 case PIPE_FUNC_EQUAL:
181 return R300_FG_ALPHA_FUNC_EQUAL;
182 case PIPE_FUNC_LEQUAL:
183 return R300_FG_ALPHA_FUNC_LE;
184 case PIPE_FUNC_GREATER:
185 return R300_FG_ALPHA_FUNC_GREATER;
186 case PIPE_FUNC_NOTEQUAL:
187 return R300_FG_ALPHA_FUNC_NOTEQUAL;
188 case PIPE_FUNC_GEQUAL:
189 return R300_FG_ALPHA_FUNC_GE;
190 case PIPE_FUNC_ALWAYS:
191 return R300_FG_ALPHA_FUNC_ALWAYS;
192 default:
193 debug_printf("r300: Unknown alpha function %d", alpha_func);
194 assert(0);
195 break;
196 }
197 return 0;
198 }
199
200 static INLINE uint32_t
201 r300_translate_polygon_mode_front(unsigned mode) {
202 switch (mode)
203 {
204 case PIPE_POLYGON_MODE_FILL:
205 return R300_GA_POLY_MODE_FRONT_PTYPE_TRI;
206 case PIPE_POLYGON_MODE_LINE:
207 return R300_GA_POLY_MODE_FRONT_PTYPE_LINE;
208 case PIPE_POLYGON_MODE_POINT:
209 return R300_GA_POLY_MODE_FRONT_PTYPE_POINT;
210
211 default:
212 debug_printf("r300: Bad polygon mode %i in %s\n", mode,
213 __FUNCTION__);
214 return R300_GA_POLY_MODE_FRONT_PTYPE_TRI;
215 }
216 }
217
218 static INLINE uint32_t
219 r300_translate_polygon_mode_back(unsigned mode) {
220 switch (mode)
221 {
222 case PIPE_POLYGON_MODE_FILL:
223 return R300_GA_POLY_MODE_BACK_PTYPE_TRI;
224 case PIPE_POLYGON_MODE_LINE:
225 return R300_GA_POLY_MODE_BACK_PTYPE_LINE;
226 case PIPE_POLYGON_MODE_POINT:
227 return R300_GA_POLY_MODE_BACK_PTYPE_POINT;
228
229 default:
230 debug_printf("r300: Bad polygon mode %i in %s\n", mode,
231 __FUNCTION__);
232 return R300_GA_POLY_MODE_BACK_PTYPE_TRI;
233 }
234 }
235
236 /* Texture sampler state. */
237
238 static INLINE uint32_t r300_translate_wrap(int wrap)
239 {
240 switch (wrap) {
241 case PIPE_TEX_WRAP_REPEAT:
242 return R300_TX_REPEAT;
243 case PIPE_TEX_WRAP_CLAMP:
244 return R300_TX_CLAMP;
245 case PIPE_TEX_WRAP_CLAMP_TO_EDGE:
246 return R300_TX_CLAMP_TO_EDGE;
247 case PIPE_TEX_WRAP_CLAMP_TO_BORDER:
248 return R300_TX_CLAMP_TO_BORDER;
249 case PIPE_TEX_WRAP_MIRROR_REPEAT:
250 return R300_TX_REPEAT | R300_TX_MIRRORED;
251 case PIPE_TEX_WRAP_MIRROR_CLAMP:
252 return R300_TX_CLAMP | R300_TX_MIRRORED;
253 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE:
254 return R300_TX_CLAMP_TO_EDGE | R300_TX_MIRRORED;
255 case PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER:
256 return R300_TX_CLAMP_TO_EDGE | R300_TX_MIRRORED;
257 default:
258 debug_printf("r300: Unknown texture wrap %d", wrap);
259 assert(0);
260 return 0;
261 }
262 }
263
264 static INLINE uint32_t r300_translate_tex_filters(int min, int mag, int mip,
265 int is_anisotropic)
266 {
267 uint32_t retval = 0;
268 if (is_anisotropic)
269 retval |= R300_TX_MIN_FILTER_ANISO | R300_TX_MAG_FILTER_ANISO;
270 else {
271 switch (min) {
272 case PIPE_TEX_FILTER_NEAREST:
273 retval |= R300_TX_MIN_FILTER_NEAREST;
274 break;
275 case PIPE_TEX_FILTER_LINEAR:
276 retval |= R300_TX_MIN_FILTER_LINEAR;
277 break;
278 default:
279 debug_printf("r300: Unknown texture filter %d\n", min);
280 assert(0);
281 break;
282 }
283 switch (mag) {
284 case PIPE_TEX_FILTER_NEAREST:
285 retval |= R300_TX_MAG_FILTER_NEAREST;
286 break;
287 case PIPE_TEX_FILTER_LINEAR:
288 retval |= R300_TX_MAG_FILTER_LINEAR;
289 break;
290 default:
291 debug_printf("r300: Unknown texture filter %d\n", mag);
292 assert(0);
293 break;
294 }
295 }
296 switch (mip) {
297 case PIPE_TEX_MIPFILTER_NONE:
298 retval |= R300_TX_MIN_FILTER_MIP_NONE;
299 break;
300 case PIPE_TEX_MIPFILTER_NEAREST:
301 retval |= R300_TX_MIN_FILTER_MIP_NEAREST;
302 break;
303 case PIPE_TEX_MIPFILTER_LINEAR:
304 retval |= R300_TX_MIN_FILTER_MIP_LINEAR;
305 break;
306 default:
307 debug_printf("r300: Unknown texture filter %d\n", mip);
308 assert(0);
309 break;
310 }
311
312 return retval;
313 }
314
315 static INLINE uint32_t r300_anisotropy(unsigned max_aniso)
316 {
317 if (max_aniso >= 16) {
318 return R300_TX_MAX_ANISO_16_TO_1;
319 } else if (max_aniso >= 8) {
320 return R300_TX_MAX_ANISO_8_TO_1;
321 } else if (max_aniso >= 4) {
322 return R300_TX_MAX_ANISO_4_TO_1;
323 } else if (max_aniso >= 2) {
324 return R300_TX_MAX_ANISO_2_TO_1;
325 } else {
326 return R300_TX_MAX_ANISO_1_TO_1;
327 }
328 }
329
330 /* Buffer formats. */
331
332 /* Colorbuffer formats. This is the unswizzled format of the RB3D block's
333 * output. For the swizzling of the targets, check the shader's format. */
334 static INLINE uint32_t r300_translate_colorformat(enum pipe_format format)
335 {
336 switch (format) {
337 /* 8-bit buffers */
338 case PIPE_FORMAT_A8_UNORM:
339 case PIPE_FORMAT_I8_UNORM:
340 case PIPE_FORMAT_L8_UNORM:
341 return R300_COLOR_FORMAT_I8;
342 /* 16-bit buffers */
343 case PIPE_FORMAT_R5G6B5_UNORM:
344 return R300_COLOR_FORMAT_RGB565;
345 case PIPE_FORMAT_A1R5G5B5_UNORM:
346 return R300_COLOR_FORMAT_ARGB1555;
347 case PIPE_FORMAT_A4R4G4B4_UNORM:
348 return R300_COLOR_FORMAT_ARGB4444;
349 /* 32-bit buffers */
350 case PIPE_FORMAT_A8R8G8B8_UNORM:
351 case PIPE_FORMAT_X8R8G8B8_UNORM:
352 case PIPE_FORMAT_R8G8B8A8_UNORM:
353 case PIPE_FORMAT_R8G8B8X8_UNORM:
354 return R300_COLOR_FORMAT_ARGB8888;
355 /* XXX Not in pipe_format
356 case PIPE_FORMAT_A32R32G32B32:
357 return R300_COLOR_FORMAT_ARGB32323232;
358 case PIPE_FORMAT_A16R16G16B16:
359 return R300_COLOR_FORMAT_ARGB16161616;
360 case PIPE_FORMAT_A10R10G10B10_UNORM:
361 return R500_COLOR_FORMAT_ARGB10101010;
362 case PIPE_FORMAT_A2R10G10B10_UNORM:
363 return R500_COLOR_FORMAT_ARGB2101010;
364 case PIPE_FORMAT_I10_UNORM:
365 return R500_COLOR_FORMAT_I10; */
366 default:
367 debug_printf("r300: Implementation error: "
368 "Got unsupported color format %s in %s\n",
369 util_format_name(format), __FUNCTION__);
370 assert(0);
371 break;
372 }
373 return 0;
374 }
375
376 /* Depthbuffer and stencilbuffer. Thankfully, we only support two flavors. */
377 static INLINE uint32_t r300_translate_zsformat(enum pipe_format format)
378 {
379 switch (format) {
380 /* 16-bit depth, no stencil */
381 case PIPE_FORMAT_Z16_UNORM:
382 return R300_DEPTHFORMAT_16BIT_INT_Z;
383 /* 24-bit depth, ignored stencil */
384 case PIPE_FORMAT_Z24X8_UNORM:
385 /* 24-bit depth, 8-bit stencil */
386 case PIPE_FORMAT_Z24S8_UNORM:
387 return R300_DEPTHFORMAT_24BIT_INT_Z_8BIT_STENCIL;
388 default:
389 debug_printf("r300: Implementation error: "
390 "Got unsupported ZS format %s in %s\n",
391 util_format_name(format), __FUNCTION__);
392 assert(0);
393 break;
394 }
395 return 0;
396 }
397
398 /* Shader output formats. This is essentially the swizzle from the shader
399 * to the RB3D block.
400 *
401 * Note that formats are stored from C3 to C0. */
402 static INLINE uint32_t r300_translate_out_fmt(enum pipe_format format)
403 {
404 switch (format) {
405 case PIPE_FORMAT_R5G6B5_UNORM:
406 /* C_5_6_5 is missing in US_OUT_FMT, but C4_8 works just fine. */
407 case PIPE_FORMAT_A1R5G5B5_UNORM:
408 /* C_1_5_5_5 is missing in US_OUT_FMT, but C4_8 works just fine. */
409 case PIPE_FORMAT_A4R4G4B4_UNORM:
410 /* C4_4 is missing in US_OUT_FMT, but C4_8 works just fine. */
411 case PIPE_FORMAT_A8R8G8B8_UNORM:
412 case PIPE_FORMAT_X8R8G8B8_UNORM:
413 return R300_US_OUT_FMT_C4_8 |
414 R300_C0_SEL_B | R300_C1_SEL_G |
415 R300_C2_SEL_R | R300_C3_SEL_A;
416 case PIPE_FORMAT_R8G8B8A8_UNORM:
417 case PIPE_FORMAT_R8G8B8X8_UNORM:
418 return R300_US_OUT_FMT_C4_8 |
419 R300_C0_SEL_A | R300_C1_SEL_B |
420 R300_C2_SEL_G | R300_C3_SEL_R;
421
422 /* 8-bit outputs */
423 case PIPE_FORMAT_A8_UNORM:
424 return R300_US_OUT_FMT_C4_8 |
425 R300_C0_SEL_A;
426 case PIPE_FORMAT_I8_UNORM:
427 case PIPE_FORMAT_L8_UNORM:
428 return R300_US_OUT_FMT_C4_8 |
429 R300_C0_SEL_R;
430 /* R300_OUT_SIGN(x) */
431 default:
432 debug_printf("r300: Implementation error: "
433 "Got unsupported output format %s in %s\n",
434 util_format_name(format), __FUNCTION__);
435 assert(0);
436 return R300_US_OUT_FMT_UNUSED;
437 }
438 return 0;
439 }
440
441 /* Non-CSO state. (For now.) */
442
443 static INLINE uint32_t r300_translate_gb_pipes(int pipe_count)
444 {
445 switch (pipe_count) {
446 case 1:
447 return R300_GB_TILE_PIPE_COUNT_RV300;
448 break;
449 case 2:
450 return R300_GB_TILE_PIPE_COUNT_R300;
451 break;
452 case 3:
453 return R300_GB_TILE_PIPE_COUNT_R420_3P;
454 break;
455 case 4:
456 return R300_GB_TILE_PIPE_COUNT_R420;
457 break;
458 }
459 return 0;
460 }
461
462 /* Utility function to count the number of components in RGBAZS formats.
463 * XXX should go to util or p_format.h */
464 static INLINE unsigned pf_component_count(enum pipe_format format) {
465 unsigned count = 0;
466
467 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0)) {
468 count++;
469 }
470 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 1)) {
471 count++;
472 }
473 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 2)) {
474 count++;
475 }
476 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 3)) {
477 count++;
478 }
479 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_ZS, 0)) {
480 count++;
481 }
482 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_ZS, 1)) {
483 count++;
484 }
485
486 return count;
487 }
488
489 /* Translate pipe_formats into PSC vertex types. */
490 static INLINE uint16_t
491 r300_translate_vertex_data_type(enum pipe_format format) {
492 uint32_t result = 0;
493 const struct util_format_description *desc;
494 unsigned components = pf_component_count(format);
495
496 desc = util_format_description(format);
497
498 if (desc->layout != UTIL_FORMAT_LAYOUT_ARITH &&
499 desc->layout != UTIL_FORMAT_LAYOUT_ARRAY) {
500 debug_printf("r300: Bad format %s in %s:%d\n", util_format_name(format),
501 __FUNCTION__, __LINE__);
502 assert(0);
503 }
504
505 switch (desc->channel[0].type) {
506 /* Half-floats, floats, doubles */
507 case UTIL_FORMAT_TYPE_FLOAT:
508 switch (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0)) {
509 case 16:
510 /* XXX Supported only on RV350 and later. */
511 if (components > 2) {
512 result = R300_DATA_TYPE_FLT16_4;
513 } else {
514 result = R300_DATA_TYPE_FLT16_2;
515 }
516 break;
517 case 32:
518 result = R300_DATA_TYPE_FLOAT_1 + (components - 1);
519 break;
520 default:
521 debug_printf("r300: Bad format %s in %s:%d\n",
522 util_format_name(format), __FUNCTION__, __LINE__);
523 assert(0);
524 }
525 break;
526 /* Unsigned ints */
527 case UTIL_FORMAT_TYPE_UNSIGNED:
528 /* Signed ints */
529 case UTIL_FORMAT_TYPE_SIGNED:
530 switch (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0)) {
531 case 8:
532 result = R300_DATA_TYPE_BYTE;
533 break;
534 case 16:
535 if (components > 2) {
536 result = R300_DATA_TYPE_SHORT_4;
537 } else {
538 result = R300_DATA_TYPE_SHORT_2;
539 }
540 break;
541 default:
542 debug_printf("r300: Bad format %s in %s:%d\n",
543 util_format_name(format), __FUNCTION__, __LINE__);
544 debug_printf("r300: util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0) == %d\n",
545 util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0));
546 assert(0);
547 }
548 break;
549 default:
550 debug_printf("r300: Bad format %s in %s:%d\n",
551 util_format_name(format), __FUNCTION__, __LINE__);
552 assert(0);
553 }
554
555 if (desc->channel[0].type == UTIL_FORMAT_TYPE_SIGNED) {
556 result |= R300_SIGNED;
557 }
558 if (desc->channel[0].normalized) {
559 result |= R300_NORMALIZE;
560 }
561
562 return result;
563 }
564
565 static INLINE uint16_t
566 r300_translate_vertex_data_swizzle(enum pipe_format format) {
567 const struct util_format_description *desc = util_format_description(format);
568 unsigned swizzle[4], i;
569
570 assert(format);
571
572 if (desc->layout != UTIL_FORMAT_LAYOUT_ARITH &&
573 desc->layout != UTIL_FORMAT_LAYOUT_ARRAY) {
574 debug_printf("r300: Bad format %s in %s:%d\n",
575 util_format_name(format), __FUNCTION__, __LINE__);
576 return 0;
577 }
578
579 /* Swizzles for 8bits formats are in the reversed order, not sure why. */
580 if (desc->channel[0].size == 8) {
581 for (i = 0; i < 4; i++) {
582 if (desc->swizzle[i] <= 3) {
583 swizzle[i] = 3 - desc->swizzle[i];
584 } else {
585 swizzle[i] = desc->swizzle[i];
586 }
587 }
588 } else {
589 for (i = 0; i < 4; i++) {
590 swizzle[i] = desc->swizzle[i];
591 }
592 }
593
594 return ((swizzle[0] << R300_SWIZZLE_SELECT_X_SHIFT) |
595 (swizzle[1] << R300_SWIZZLE_SELECT_Y_SHIFT) |
596 (swizzle[2] << R300_SWIZZLE_SELECT_Z_SHIFT) |
597 (swizzle[3] << R300_SWIZZLE_SELECT_W_SHIFT) |
598 (0xf << R300_WRITE_ENA_SHIFT));
599 }
600
601 #endif /* R300_STATE_INLINES_H */