/external/mesa3d/src/glsl/ |
glsl_types.h | 50 GLSL_TYPE_BOOL, 233 && (base_type <= GLSL_TYPE_BOOL); 244 && (base_type <= GLSL_TYPE_BOOL); 285 return base_type == GLSL_TYPE_BOOL;
|
builtin_types.h | 39 glsl_type(GL_BOOL, GLSL_TYPE_BOOL, 1, 1, "bool"), 40 glsl_type(GL_BOOL_VEC2, GLSL_TYPE_BOOL, 2, 1, "bvec2"), 41 glsl_type(GL_BOOL_VEC3, GLSL_TYPE_BOOL, 3, 1, "bvec3"), 42 glsl_type(GL_BOOL_VEC4, GLSL_TYPE_BOOL, 4, 1, "bvec4"),
|
ir_to_llvm.cpp | 137 case GLSL_TYPE_BOOL: 539 case GLSL_TYPE_BOOL: 550 case GLSL_TYPE_BOOL: 565 case GLSL_TYPE_BOOL: 601 case GLSL_TYPE_BOOL: 613 case GLSL_TYPE_BOOL: 640 case GLSL_TYPE_BOOL: 653 case GLSL_TYPE_BOOL: 666 case GLSL_TYPE_BOOL: 679 case GLSL_TYPE_BOOL [all...] |
ir_validate.cpp | 214 assert(ir->type->base_type == GLSL_TYPE_BOOL); 215 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL); 245 assert(ir->type->base_type == GLSL_TYPE_BOOL); 248 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL); 253 assert(ir->type->base_type == GLSL_TYPE_BOOL); 256 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL); 265 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL); 318 assert(ir->type->base_type == GLSL_TYPE_BOOL);
|
ir.cpp | 447 && (type->base_type <= GLSL_TYPE_BOOL)); 503 case GLSL_TYPE_BOOL: this->value.b[0] = c->value.b[i]; break; 571 case GLSL_TYPE_BOOL: 626 case GLSL_TYPE_BOOL: 663 case GLSL_TYPE_BOOL: return this->value.b[i]; 680 case GLSL_TYPE_BOOL: return this->value.b[i] ? 1.0 : 0.0; 697 case GLSL_TYPE_BOOL: return this->value.b[i] ? 1 : 0; 714 case GLSL_TYPE_BOOL: return this->value.b[i] ? 1 : 0; 821 case GLSL_TYPE_BOOL: 854 case GLSL_TYPE_BOOL [all...] |
glsl_types.cpp | 225 case GLSL_TYPE_BOOL: 297 case GLSL_TYPE_BOOL: 479 case GLSL_TYPE_BOOL:
|
ir_function.cpp | 38 case GLSL_TYPE_BOOL:
|
lower_vector.cpp | 171 case GLSL_TYPE_BOOL: d.b[assigned] = c->value.b[0]; break;
|
ast_function.cpp | 243 assert(a <= GLSL_TYPE_BOOL); 244 assert(b <= GLSL_TYPE_BOOL); 255 assert(b == GLSL_TYPE_BOOL); 267 case GLSL_TYPE_BOOL: 272 case GLSL_TYPE_BOOL: 550 case GLSL_TYPE_BOOL: [all...] |
ir_constant_expression.cpp | 123 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 147 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 159 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 560 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 565 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 570 assert(op[0]->type->base_type == GLSL_TYPE_BOOL); 844 case GLSL_TYPE_BOOL: data.b[i] = v->value.b[swiz_idx[i]]; break; [all...] |
ir_print_visitor.cpp | 338 case GLSL_TYPE_BOOL: printf("%d", ir->value.b[i]); break;
|
opt_constant_propagation.cpp | 189 case GLSL_TYPE_BOOL:
|
ir_clone.cpp | 327 case GLSL_TYPE_BOOL:
|
lower_mat_op_to_vec.cpp | 298 glsl_type::get_instance(GLSL_TYPE_BOOL, columns, 1);
|
ast_to_hir.cpp | 142 case GLSL_TYPE_BOOL: 773 case GLSL_TYPE_BOOL: [all...] |
ir_reader.cpp | 896 case GLSL_TYPE_BOOL: { [all...] |