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

1 2 3

  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_swizzle.c 77 unsigned int swz = GET_SWZ(swizzle, comp); local
78 if (swz == RC_SWIZZLE_UNUSED)
80 if (swz != GET_SWZ(sd->hash, comp))
121 unsigned int swz = GET_SWZ(reg.Swizzle, j); local
122 if (swz == RC_SWIZZLE_UNUSED)
124 if (swz != j)
164 unsigned int swz; local
167 swz = GET_SWZ(src.Swizzle, comp);
168 if (swz == RC_SWIZZLE_UNUSED)
170 if (swz == GET_SWZ(sd->hash, comp))
229 unsigned int swz = GET_SWZ(swizzle, 0); local
    [all...]
radeon_compiler_util.c 38 unsigned int rc_swizzle_to_writemask(unsigned int swz)
44 mask |= 1 << GET_SWZ(swz, i);
51 rc_swizzle get_swz(unsigned int swz, rc_swizzle idx)
55 return GET_SWZ(swz, idx);
89 unsigned int combine_swizzles(unsigned int src, unsigned int swz)
93 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_X));
94 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_Y)) << 3;
95 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_Z)) << 6;
96 ret |= get_swz(src, GET_SWZ(swz, RC_SWIZZLE_W)) << 9;
120 unsigned swz = GET_SWZ(swizzle, chan) local
235 unsigned int swz = GET_SWZ(conversion_swizzle, i); local
269 unsigned int swz = GET_SWZ(swizzle, chan); local
295 rc_swizzle swz = GET_SWZ(swizzle, i); local
333 unsigned int swz = RC_SWIZZLE_UNUSED; local
725 int swz = GET_SWZ(swizzle, chan); local
744 unsigned int swz, chan; local
    [all...]
radeon_compiler_util.h 14 unsigned int rc_swizzle_to_writemask(unsigned int swz);
16 rc_swizzle get_swz(unsigned int swz, rc_swizzle idx);
24 unsigned int combine_swizzles(unsigned int src, unsigned int swz);
radeon_inline_literals.c 85 unsigned swz, chan; local
88 swz = RC_SWIZZLE_UNUSED;
100 swz = GET_SWZ(src_reg->Swizzle, chan);
101 if (swz == RC_SWIZZLE_UNUSED) {
104 float_value = constant->u.Immediate[swz];
radeon_program_constants.h 120 #define GET_SWZ(swz, idx) (((swz) >> ((idx)*3)) & 0x7)
122 #define SET_SWZ(swz, idx, newv) \
124 (swz) = ((swz) & ~(7 << ((idx)*3))) | ((newv) << ((idx)*3)); \
radeon_optimize.c 187 unsigned int swz = GET_SWZ(src.Swizzle, chan); local
188 if (swz < 4) {
192 if (swz == RC_SWIZZLE_UNUSED)
196 *pswz = swz;
200 if (swz != *pswz || *pnegate != GET_BIT(src.Negate, chan)) {
212 rc_swizzle swz = 0; local
215 if (is_src_uniform_constant(inst->U.I.SrcReg[2], &swz, &negate)) {
216 if (swz == RC_SWIZZLE_ZERO) {
222 if (is_src_uniform_constant(inst->U.I.SrcReg[1], &swz, &negate)) {
223 if (swz == RC_SWIZZLE_ONE)
253 rc_swizzle swz = 0; local
286 rc_swizzle swz = 0; local
345 unsigned int swz = GET_SWZ(newsrc.Swizzle, chan); local
423 unsigned int swz = GET_SWZ(src.Swizzle, chan); local
538 rc_swizzle swz = local
630 unsigned int i, swz; local
703 unsigned int chan = 0, swz, i; local
    [all...]
radeon_program_pair.c 135 unsigned int swz,
138 /* swz > 3 means that the swizzle is either not used, or a constant
140 if(swz > 3)
143 if(swz == RC_SWIZZLE_W) {
194 unsigned int swz = RC_SWIZZLE_UNUSED; local
199 swz = GET_SWZ(pair->RGB.Arg[i].Swizzle, chan);
200 if(swz == RC_SWIZZLE_X || swz == RC_SWIZZLE_Y
201 || swz == RC_SWIZZLE_Z || swz == RC_SWIZZLE_W
    [all...]
radeon_pair_translate.c 137 unsigned int swz = GET_SWZ(src.Swizzle, j); local
138 if (swz < 3)
140 else if (swz < 4)
224 unsigned int swz = GET_SWZ(inst->SrcReg[i].Swizzle, j); local
226 if (swz < RC_SWIZZLE_W)
228 else if (swz == RC_SWIZZLE_W)
231 if (swz < RC_SWIZZLE_UNUSED)
250 unsigned int swz; local
252 swz = rc_get_scalar_src_swz(inst->SrcReg[i].Swizzle);
254 swz = GET_SWZ(inst->SrcReg[i].Swizzle, 3)
    [all...]
r500_fragprog.c 201 unsigned int swz = GET_SWZ(reg.Swizzle, i); local
202 if (swz == RC_SWIZZLE_UNUSED) {
206 if (swz >= 4)
227 unsigned int swz = GET_SWZ(reg.Swizzle, i); local
228 if (swz != RC_SWIZZLE_UNUSED && swz != RC_SWIZZLE_ZERO)
251 unsigned int swz = GET_SWZ(src.Swizzle, i); local
252 if (swz == RC_SWIZZLE_UNUSED || !GET_BIT(usemask, i))
radeon_dataflow.c 66 unsigned int swz, unsigned int src)
68 if (swz >= 4)
71 if (swz == RC_SWIZZLE_X || swz == RC_SWIZZLE_Y || swz == RC_SWIZZLE_Z) {
78 refmasks[i] |= 1 << swz;
82 refmasks[src] |= 1 << swz;
86 if (swz == RC_SWIZZLE_W) {
92 refmasks[i] |= 1 << swz;
96 refmasks[src] |= 1 << swz;
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_texture.c 190 swizzle(const struct nv30_texfmt *fmt, unsigned cmp, unsigned swz)
192 uint32_t data = fmt->swz[swz].src << 8;
193 if (swz <= PIPE_SWIZZLE_ALPHA)
194 data |= fmt->swz[swz].cmp;
196 data |= fmt->swz[cmp].cmp;
240 so->swz = fmt->swizzle;
241 so->swz |= swizzle(fmt, 3, tmpl->swizzle_a);
242 so->swz |= swizzle(fmt, 0, tmpl->swizzle_r) << 2
    [all...]
nvfx_shader.h 413 #define swz(s,x,y,z,w) nvfx_src_swz((s), NVFX_SWZ_##x, NVFX_SWZ_##y, NVFX_SWZ_##z, NVFX_SWZ_##w) macro
430 uint8_t swz[4]; member in struct:nvfx_src
488 .swz = { 0, 1, 2, 3 },
499 dst.swz[NVFX_SWZ_X] = src.swz[x];
500 dst.swz[NVFX_SWZ_Y] = src.swz[y];
501 dst.swz[NVFX_SWZ_Z] = src.swz[z];
502 dst.swz[NVFX_SWZ_W] = src.swz[w]
    [all...]
nvfx_fragprog.c 151 sr |= ((src.swz[0] << NVFX_FP_REG_SWZ_X_SHIFT) |
152 (src.swz[1] << NVFX_FP_REG_SWZ_Y_SHIFT) |
153 (src.swz[2] << NVFX_FP_REG_SWZ_Z_SHIFT) |
154 (src.swz[3] << NVFX_FP_REG_SWZ_W_SHIFT));
402 src.swz[0] = fsrc->Register.SwizzleX;
403 src.swz[1] = fsrc->Register.SwizzleY;
404 src.swz[2] = fsrc->Register.SwizzleZ;
405 src.swz[3] = fsrc->Register.SwizzleW;
478 addend.swz[0] = fsrc->Register.SwizzleX;
479 addend.swz[1] = fsrc->Register.SwizzleY
    [all...]
nv30_format.h 23 } swz[6]; member in struct:nv30_texfmt
nv30_format.c 206 .swz[0] = { SWZ_OUT_##d, SWZ_SRC_##h }, \
207 .swz[1] = { SWZ_OUT_##e, SWZ_SRC_##i }, \
208 .swz[2] = { SWZ_OUT_##f, SWZ_SRC_##j }, \
209 .swz[3] = { SWZ_OUT_##g, SWZ_SRC_##k }, \
210 .swz[4] = { SWZ_OUT_0, SWZ_SRC_x }, \
211 .swz[5] = { SWZ_OUT_1, SWZ_SRC_x }, \
nvfx_vertprog.c 161 sr |= ((src.swz[0] << NVFX_VP(SRC_SWZ_X_SHIFT)) |
162 (src.swz[1] << NVFX_VP(SRC_SWZ_Y_SHIFT)) |
163 (src.swz[2] << NVFX_VP(SRC_SWZ_Z_SHIFT)) |
164 (src.swz[3] << NVFX_VP(SRC_SWZ_W_SHIFT)));
394 src.swz[0] = fsrc->Register.SwizzleX;
395 src.swz[1] = fsrc->Register.SwizzleY;
396 src.swz[2] = fsrc->Register.SwizzleZ;
397 src.swz[3] = fsrc->Register.SwizzleW;
584 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, swz(tmp, X, X, X, X), none, swz(tmp, Y, Y, Y, Y)))
    [all...]
nv30_state.h 52 unsigned swz; member in struct:nv30_sampler_view
  /external/mesa3d/src/mesa/program/
prog_parameter.c 268 GLuint swz = p->Size; /* 1, 2 or 3 for Y, Z, W */ local
271 *swizzleOut = MAKE_SWIZZLE4(swz, swz, swz, swz);
535 GLuint swz[4]; local
539 swz[j] = j;
545 swz[j] = k;
554 swz[j] = swz[j-1]
    [all...]
nvfragparse.c 691 GLuint swz[4]; local
696 if (!Parse_SwizzleSuffix(token, swz))
699 dstReg->CondSwizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]);
1070 GLuint swz[4]; local
1075 if (!Parse_SwizzleSuffix(token, swz))
1078 srcReg->Swizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3])
    [all...]
prog_optimize.c 159 is_swizzle_regular(GLuint swz)
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;
287 const GLuint swz = GET_SWZ(inst->SrcReg[j].Swizzle, comp); local
288 ASSERT(swz < 4);
289 if ((read_mask & (1 << swz)) == 0)
291 if (swz <= SWIZZLE_W)
292 tempRead[index][swz] = GL_TRUE
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_tex.c 35 nv50_tic_swizzle(uint32_t tc, unsigned swz, boolean tex_int)
37 switch (swz) {
80 uint32_t swz[4]; local
109 swz[0] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_r, tex_int);
110 swz[1] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_g, tex_int);
111 swz[2] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_b, tex_int);
112 swz[3] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_a, tex_int);
114 (swz[0] << NV50_TIC_0_MAPR__SHIFT) |
115 (swz[1] << NV50_TIC_0_MAPG__SHIFT) |
116 (swz[2] << NV50_TIC_0_MAPB__SHIFT)
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_tex.c 37 nv50_tic_swizzle(uint32_t tc, unsigned swz, boolean tex_int)
39 switch (swz) {
64 uint32_t swz[4]; local
92 swz[0] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_r, tex_int);
93 swz[1] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_g, tex_int);
94 swz[2] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_b, tex_int);
95 swz[3] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_a, tex_int);
97 (swz[0] << NV50_TIC_0_MAPR__SHIFT) |
98 (swz[1] << NV50_TIC_0_MAPG__SHIFT) |
99 (swz[2] << NV50_TIC_0_MAPB__SHIFT)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSwizzleTests.cpp 48 static int swizzle (const tcu::RGBA& c, deUint32 swz)
50 switch (swz)
311 deUint32 swz = swizzles[swzNdx].swizzle; local
312 deUint32 swzR = (chanNdx == 0) ? swz : defaultSwizzles[0];
313 deUint32 swzG = (chanNdx == 1) ? swz : defaultSwizzles[1];
314 deUint32 swzB = (chanNdx == 2) ? swz : defaultSwizzles[2];
315 deUint32 swzA = (chanNdx == 3) ? swz : defaultSwizzles[3];
  /external/deqp/modules/gles31/functional/
es31fTextureFilteringTests.cpp 232 const tcu::IVec4 swz = levelSwz[layerFaceNdx % DE_LENGTH_OF_ARRAY(levelSwz)]; local
233 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;
234 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;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.c 698 const unsigned char swz[4])
703 if (swz[i] <= UTIL_FORMAT_SWIZZLE_W)
704 dst[i] = src[swz[i]];
705 else if (swz[i] == UTIL_FORMAT_SWIZZLE_0)
707 else if (swz[i] == UTIL_FORMAT_SWIZZLE_1)
713 const unsigned char swz[4])
718 switch (swz[i]) {

Completed in 1328 milliseconds

1 2 3