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

1 23 4

  /external/chromium_org/third_party/mesa/src/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;
  /external/chromium_org/third_party/mesa/src/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...]
  /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;
  /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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
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/r300/compiler/
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/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 58 SWZ = 276,
166 #define SWZ 276
282 unsigned swz; member in struct:YYSTYPE::__anon12307
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_ureg.h 870 unsigned swz = ( (reg.SwizzleX << 0) | local
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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...]

Completed in 1986 milliseconds

1 23 4