/external/chromium_org/third_party/mesa/src/src/glsl/ |
hir_field_selection.cpp | 51 ir_swizzle *swiz = ir_swizzle::create(op, local 54 if (swiz != NULL) { 55 result = swiz;
|
ir_print_visitor.cpp | 303 const unsigned swiz[4] = { local 310 printf("(swiz "); 312 printf("%c", "xyzw"[swiz[i]]);
|
opt_copy_propagation_elements.cpp | 445 ir_swizzle *swiz = ir->rhs->as_swizzle(); local 446 if (!swiz) 449 rhs = swiz->val->as_dereference_variable(); 453 orig_swizzle[0] = swiz->mask.x; 454 orig_swizzle[1] = swiz->mask.y; 455 orig_swizzle[2] = swiz->mask.z; 456 orig_swizzle[3] = swiz->mask.w;
|
ir.cpp | 82 ir_swizzle *swiz = lhs->as_swizzle(); local 84 if (swiz == NULL) 90 for (unsigned i = 0; i < swiz->mask.num_components; i++) { 94 case 0: c = swiz->mask.x; break; 95 case 1: c = swiz->mask.y; break; 96 case 2: c = swiz->mask.z; break; 97 case 3: c = swiz->mask.w; break; 106 lhs = swiz->val; [all...] |
ast_function.cpp | 1064 unsigned swiz[4] = { 0, 0, 0, 0 }; local [all...] |
ir_reader.cpp | 525 else if (strcmp(tag->value(), "swiz") == 0) { 730 s_symbol *swiz; local 733 s_pattern pat[] = { "swiz", swiz, sub }; 735 ir_read_error(expr, "expected (swiz <swizzle> <rvalue>)"); 739 if (strlen(swiz->value()) > 4) { 740 ir_read_error(expr, "expected a valid swizzle; found %s", swiz->value()); 748 ir_swizzle *ir = ir_swizzle::create(rvalue, swiz->value(),
|
/external/mesa3d/src/glsl/ |
hir_field_selection.cpp | 51 ir_swizzle *swiz = ir_swizzle::create(op, local 54 if (swiz != NULL) { 55 result = swiz;
|
ir_print_visitor.cpp | 303 const unsigned swiz[4] = { local 310 printf("(swiz "); 312 printf("%c", "xyzw"[swiz[i]]);
|
opt_copy_propagation_elements.cpp | 445 ir_swizzle *swiz = ir->rhs->as_swizzle(); local 446 if (!swiz) 449 rhs = swiz->val->as_dereference_variable(); 453 orig_swizzle[0] = swiz->mask.x; 454 orig_swizzle[1] = swiz->mask.y; 455 orig_swizzle[2] = swiz->mask.z; 456 orig_swizzle[3] = swiz->mask.w;
|
ir.cpp | 82 ir_swizzle *swiz = lhs->as_swizzle(); local 84 if (swiz == NULL) 90 for (unsigned i = 0; i < swiz->mask.num_components; i++) { 94 case 0: c = swiz->mask.x; break; 95 case 1: c = swiz->mask.y; break; 96 case 2: c = swiz->mask.z; break; 97 case 3: c = swiz->mask.w; break; 106 lhs = swiz->val; [all...] |
ast_function.cpp | 1064 unsigned swiz[4] = { 0, 0, 0, 0 }; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_opt_constant_fold.c | 50 unsigned swiz; local 56 (gl_constant_value *) &val, 1, &swiz); 57 src.Swizzle = swiz; 65 unsigned swiz; local 71 (gl_constant_value *) val, 4, &swiz); 72 src.Swizzle = swiz;
|
prog_parameter_layout.c | 41 unsigned swiz = 0; local 47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3); 50 return swiz;
|
/external/mesa3d/src/mesa/program/ |
prog_opt_constant_fold.c | 50 unsigned swiz; local 56 (gl_constant_value *) &val, 1, &swiz); 57 src.Swizzle = swiz; 65 unsigned swiz; local 71 (gl_constant_value *) val, 4, &swiz); 72 src.Swizzle = swiz;
|
prog_parameter_layout.c | 41 unsigned swiz = 0; local 47 swiz |= ((s <= SWIZZLE_W) ? GET_SWZ(base, s) : s) << (i * 3); 50 return swiz;
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_atom_texture.c | 66 unsigned char swiz[4]; local 76 swiz[i] = GET_SWZ(swizzle, i); 82 if (swiz[i] == SWIZZLE_W) 83 swiz[i] = SWIZZLE_ONE; 84 else if (swiz[i] < SWIZZLE_W) 85 swiz[i] = SWIZZLE_X; 91 if (swiz[i] <= SWIZZLE_W) 92 swiz[i] = SWIZZLE_X; 98 if (swiz[i] == SWIZZLE_W) 99 swiz[i] = SWIZZLE_X [all...] |
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrConfigConversionEffect.cpp | 39 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb"; variable 44 outputColor, outputColor, swiz, outputColor, outputColor); 53 outputColor, outputColor, swiz, outputColor, outputColor); 57 outputColor, outputColor, outputColor, swiz, outputColor, outputColor); 61 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
|
/external/mesa3d/src/mesa/state_tracker/ |
st_atom_texture.c | 66 unsigned char swiz[4]; local 76 swiz[i] = GET_SWZ(swizzle, i); 82 if (swiz[i] == SWIZZLE_W) 83 swiz[i] = SWIZZLE_ONE; 84 else if (swiz[i] < SWIZZLE_W) 85 swiz[i] = SWIZZLE_X; 91 if (swiz[i] <= SWIZZLE_W) 92 swiz[i] = SWIZZLE_X; 98 if (swiz[i] == SWIZZLE_W) 99 swiz[i] = SWIZZLE_X [all...] |
/external/skia/src/gpu/effects/ |
GrConfigConversionEffect.cpp | 39 const char* swiz = fSwapRedAndBlue ? "bgr" : "rgb"; variable 44 outputColor, outputColor, swiz, outputColor, outputColor); 53 outputColor, outputColor, swiz, outputColor, outputColor); 57 outputColor, outputColor, outputColor, swiz, outputColor, outputColor); 61 outputColor, outputColor, outputColor, swiz, outputColor, outputColor);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 361 unsigned int swiz = 0; local 364 swiz |= (GET_SWZ(swizzle, i) & 0x3) << i*2; 365 return swiz;
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 361 unsigned int swiz = 0; local 364 swiz |= (GET_SWZ(swizzle, i) & 0x3) << i*2; 365 return swiz;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_visitor.cpp | 1376 int swiz = GET_SWZ(c->key.tex.swizzles[sampler], i); local 1410 int swiz = 0; local [all...] |
brw_fs.cpp | 585 int swiz = GET_SWZ(slots[i].swizzle, j); local 586 if (swiz == last_swiz) 588 last_swiz = swiz; 591 this->param_offset[c->prog_data.nr_params] = swiz; [all...] |
brw_vec4_visitor.cpp | 580 int swiz = GET_SWZ(slots[i].swizzle, j); local 581 last_swiz = swiz; 583 c->prog_data.param[this->uniforms * 4 + j] = &values[swiz]; 584 if (swiz <= last_swiz) [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_visitor.cpp | 1376 int swiz = GET_SWZ(c->key.tex.swizzles[sampler], i); local 1410 int swiz = 0; local [all...] |