/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_instruction.h | 52 #define SWIZZLE_W 3 63 #define SWIZZLE_XYZW MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W) 67 #define SWIZZLE_WWWW MAKE_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, SWIZZLE_W, SWIZZLE_W)
|
prog_parameter_layout.c | 47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3);
|
prog_optimize.c | 119 if (channel_mask & (1 << comp) && coord <= SWIZZLE_W) 161 return GET_SWZ(swz,0) <= SWIZZLE_W && 162 GET_SWZ(swz,1) <= SWIZZLE_W && 163 GET_SWZ(swz,2) <= SWIZZLE_W && 164 GET_SWZ(swz,3) <= SWIZZLE_W; 291 if (swz <= SWIZZLE_W) [all...] |
prog_instruction.c | 326 if (swizzle <= SWIZZLE_W &&
|
/external/mesa3d/src/mesa/program/ |
prog_instruction.h | 52 #define SWIZZLE_W 3 63 #define SWIZZLE_XYZW MAKE_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W) 67 #define SWIZZLE_WWWW MAKE_SWIZZLE4(SWIZZLE_W, SWIZZLE_W, SWIZZLE_W, SWIZZLE_W)
|
prog_parameter_layout.c | 47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3);
|
prog_optimize.c | 119 if (channel_mask & (1 << comp) && coord <= SWIZZLE_W) 161 return GET_SWZ(swz,0) <= SWIZZLE_W && 162 GET_SWZ(swz,1) <= SWIZZLE_W && 163 GET_SWZ(swz,2) <= SWIZZLE_W && 164 GET_SWZ(swz,3) <= SWIZZLE_W; 291 if (swz <= SWIZZLE_W) [all...] |
prog_instruction.c | 326 if (swizzle <= SWIZZLE_W &&
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_atom_texture.c | 82 if (swiz[i] == SWIZZLE_W) 84 else if (swiz[i] < SWIZZLE_W) 91 if (swiz[i] <= SWIZZLE_W) 98 if (swiz[i] == SWIZZLE_W) 100 else if (swiz[i] < SWIZZLE_W) 106 if (swiz[i] == SWIZZLE_W)
|
st_atom_pixeltransfer.c | 233 inst[ic].SrcReg[0].Swizzle = MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, 234 SWIZZLE_Z, SWIZZLE_W);
|
/external/mesa3d/src/mesa/state_tracker/ |
st_atom_texture.c | 82 if (swiz[i] == SWIZZLE_W) 84 else if (swiz[i] < SWIZZLE_W) 91 if (swiz[i] <= SWIZZLE_W) 98 if (swiz[i] == SWIZZLE_W) 100 else if (swiz[i] < SWIZZLE_W) 106 if (swiz[i] == SWIZZLE_W)
|
st_atom_pixeltransfer.c | 233 inst[ic].SrcReg[0].Swizzle = MAKE_SWIZZLE4(SWIZZLE_Z, SWIZZLE_W, 234 SWIZZLE_Z, SWIZZLE_W);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_vertprog.c | 51 SWIZZLE_W != VSF_IN_COMPONENT_W || \ 617 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 618 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 626 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 627 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 635 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 636 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 641 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 657 SWIZZLE_Z, SWIZZLE_W, 679 SWIZZLE_Z, SWIZZLE_W, [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_vertprog.c | 51 SWIZZLE_W != VSF_IN_COMPONENT_W || \ 617 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 618 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 626 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 627 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 635 if (GET_SWZ(src[i].Swizzle, j) == SWIZZLE_W) { 636 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 641 src[i].Swizzle &= ~(SWIZZLE_W << (j*3)); 657 SWIZZLE_Z, SWIZZLE_W, 679 SWIZZLE_Z, SWIZZLE_W, [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_table.py | 75 SWIZZLE_W: "UTIL_FORMAT_SWIZZLE_W",
|
u_format_parse.py | 35 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7) 224 'w': SWIZZLE_W,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_table.py | 75 SWIZZLE_W: "UTIL_FORMAT_SWIZZLE_W",
|
u_format_parse.py | 35 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7) 224 'w': SWIZZLE_W,
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_fragprog.c | 63 vector[SWIZZLE_W] = texel[3];
|
/external/mesa3d/src/mesa/swrast/ |
s_fragprog.c | 63 vector[SWIZZLE_W] = texel[3];
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_vec4.cpp | 47 BRW_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W),
|
brw_vec4_visitor.cpp | [all...] |
gen7_wm_surface_state.c | 52 case SWIZZLE_W:
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_vec4.cpp | 47 BRW_SWIZZLE4(SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W),
|
brw_vec4_visitor.cpp | [all...] |