HomeSort by relevance Sort by last modified time
    Searched refs:swz (Results 26 - 50 of 51) sorted by null

12 3

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_vert_fc.c 194 unsigned swz; local
198 swz = rc_get_scalar_src_swz(inst->U.I.SrcReg[1].Swizzle);
202 RC_SWIZZLE_UNUSED, RC_SWIZZLE_UNUSED, swz);
radeon_program_print.c 170 static char rc_swizzle_char(unsigned int swz)
172 switch(swz) {
182 fprintf(stderr, "bad swz: %u\n", swz);
190 rc_swizzle swz = GET_SWZ(swizzle, comp); local
193 fprintf(f, "%c", rc_swizzle_char(swz));
r500_fragprog_emit.c 141 static unsigned int fix_hw_swizzle(unsigned int swz)
143 switch (swz) {
146 swz = 4;
149 swz = 5;
152 swz = 6;
156 return swz;
radeon_pair_schedule.c 847 rc_swizzle swz = get_swz(arg->Swizzle, i); local
848 switch(swz) {
854 read_chan = swz;
855 } else if (read_chan != swz) {
954 unsigned int swz = get_swz(pair_inst->Alpha.Arg[i].Swizzle, j); local
955 if (swz != RC_SWIZZLE_UNUSED) {
957 rc_init_swizzle(swz, 1);
    [all...]
r3xx_vertprog.c 162 unsigned int swz = rc_get_scalar_src_swz(src->Swizzle); local
165 t_swizzle(swz),
166 t_swizzle(swz),
167 t_swizzle(swz),
168 t_swizzle(swz),
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp     [all...]
nv50_ir_from_tgsi.cpp 1138 const int swz = src.getSwizzle(c);
1142 src.isIndirect(0) ? -1 : src.getIndex(0), swz,
1143 src.getIndex(0) * 16 + swz * 4);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_constval.c 77 GLubyte swz )
79 switch (swz) {
brw_wm_fp.c 577 struct prog_instruction *swz; local
580 /* dst.xz = swz src0.1zzz
582 swz = emit_op(c,
590 swz->SrcReg[0].Negate &= ~NEGATE_X;
637 struct prog_instruction *swz; local
639 /* dst.xw = swz src0.1111
641 swz = emit_op(c,
649 swz->SrcReg[0].Negate = NEGATE_NONE;
brw_eu.h 46 #define BRW_GET_SWZ(swz, idx) (((swz) >> ((idx)*2)) & 0x3)
  /external/mesa3d/src/mesa/program/
prog_instruction.h 53 #define SWIZZLE_ZERO 4 /**< For SWZ instruction only */
54 #define SWIZZLE_ONE 5 /**< For SWZ instruction only */
60 #define GET_SWZ(swz, idx) (((swz) >> ((idx)*3)) & 0x7)
270 * This will either be NEGATE_NONE or NEGATE_XYZW, except for the SWZ
program_parse.y 145 unsigned swz;
164 %token <temp_inst> ARL KIL SWZ TXD_OP
540 SWZ_instruction: SWZ maskedDstReg ',' srcReg ',' extendedSwizzle
693 $$.swizzle = MAKE_SWIZZLE4($1.swz, $3.swz, $5.swz, $7.swz);
713 $$.swz = ($1 == 0) ? SWIZZLE_ZERO : SWIZZLE_ONE;
735 $$.swz = SWIZZLE_X;
739 $$.swz = SWIZZLE_Y
    [all...]
prog_print.c 466 static const char swz[] = "xyzw01!?"; /* See SWIZZLE_x definitions */ local
478 s[i++] = swz[GET_SWZ(swizzle, 0)];
486 s[i++] = swz[GET_SWZ(swizzle, 1)];
494 s[i++] = swz[GET_SWZ(swizzle, 2)];
502 s[i++] = swz[GET_SWZ(swizzle, 3)];
713 fprintf(f, "SWZ");
    [all...]
prog_execute.c 1632 const GLuint swz = GET_SWZ(source->Swizzle, i); local
    [all...]
  /external/mesa3d/src/mesa/main/
texparam.c 210 set_swizzle_component(GLuint *swizzle, GLuint comp, GLuint swz)
213 ASSERT(swz <= SWIZZLE_NIL);
216 GLuint s = (*swizzle & ~mask) | (swz << (3 * comp));
450 const GLint swz = comp_to_swizzle(params[0]); local
451 if (swz < 0) {
460 set_swizzle_component(&texObj->_Swizzle, comp, swz);
471 const GLint swz = comp_to_swizzle(params[comp]); local
472 if (swz >= 0) {
474 set_swizzle_component(&texObj->_Swizzle, comp, swz);
    [all...]
ffvertex_prog.c 300 GLuint swz:12; member in struct:ureg
349 reg.swz = SWIZZLE_NOOP;
365 reg.swz = MAKE_SWIZZLE4(GET_SWZ(reg.swz, x),
366 GET_SWZ(reg.swz, y),
367 GET_SWZ(reg.swz, z),
368 GET_SWZ(reg.swz, w));
531 src->Swizzle = reg.swz;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_ureg.h 870 unsigned swz = ( (reg.SwizzleX << 0) | local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 383 const unsigned *swz )
385 return ureg_swizzle( src, swz[0], swz[1], swz[2], swz[3] );
390 * Translate a SWZ instruction into a MOV, MUL or MAD instruction. EG:
392 * SWZ dst, src.x-y10
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.h 1026 const unsigned char swz[4]);
1029 const unsigned char swz[4]);
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.h 136 #define GET_SHUF(swz, idx) (((swz) >> ((idx)*2)) & 0x3)
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_fragtex.c 135 PUSH_DATA (push, sv->swz);
  /external/deqp/modules/gles3/functional/
es3fTextureFilteringTests.cpp 762 const tcu::IVec4 swz = levelSwz[layerNdx%DE_LENGTH_OF_ARRAY(levelSwz)]; local
763 const tcu::Vec4 gMin = tcu::Vec4(0.0f, 0.0f, 0.0f, 1.0f).swizzle(swz[0],swz[1],swz[2],swz[3])*cScale + cBias;
764 const tcu::Vec4 gMax = tcu::Vec4(1.0f, 1.0f, 1.0f, 0.0f).swizzle(swz[0],swz[1],swz[2],swz[3])*cScale + cBias;
    [all...]
es3fFragmentOutputTests.cpp 461 const IVec4& swz = s_swizzles[swzNdx % DE_LENGTH_OF_ARRAY(s_swizzles)]; local
462 return vec.swizzle(swz[0], swz[1], swz[2], swz[3]);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.h 215 #define GET_SHUF(swz, idx) (((swz) >> ((idx)*2)) & 0x3)
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 51 unsigned swz = r300_surface(fb->cbufs[0])->colormask_swizzle; local
52 WRITE_CS_TABLE(blend->cb_clamp[swz], size);
    [all...]

Completed in 4666 milliseconds

12 3