HomeSort by relevance Sort by last modified time
    Searched full:is_matrix (Results 1 - 25 of 35) sorted by null

1 2

  /external/mesa3d/src/compiler/glsl/
lower_mat_op_to_vec.cpp 80 if (expr->operands[i]->type->is_matrix())
116 if (val->type->is_matrix()) {
298 if (expr->operands[i]->type->is_matrix()) {
403 if (op[0]->type->is_matrix()) {
404 if (op[1]->type->is_matrix()) {
413 assert(op[1]->type->is_matrix());
opt_rebalance_tree.cpp 236 if (expr->type->is_matrix() ||
237 expr->operands[0]->type->is_matrix() ||
238 (expr->operands[1] && expr->operands[1]->type->is_matrix())) {
opt_flip_matrices.cpp 73 !ir->operands[0]->type->is_matrix() ||
opt_algebraic.cpp 260 if (ir1->operands[0]->type->is_matrix() ||
261 ir1->operands[1]->type->is_matrix() ||
262 ir2->operands[0]->type->is_matrix() ||
263 ir2->operands[1]->type->is_matrix())
319 ir->operands[0]->type->is_matrix() &&
324 matrix_mul->operands[0]->type->is_matrix() &&
325 matrix_mul->operands[1]->type->is_matrix()) {
334 if (ir->operands[i]->type->is_matrix())
ast_array_index.cpp 150 && !array->type->is_matrix()
184 if (array->type->is_matrix()) {
347 || array->type->is_matrix()
ast_function.cpp 919 assert(src->type->is_matrix());
    [all...]
lower_buffer_access.cpp 107 if (deref->type->is_matrix()) {
238 matrix = matrix || ir->type->without_array()->is_matrix();
362 } else if (deref_array->array->type->is_matrix() && *row_major) {
opt_array_splitting.cpp 134 if (!(var->type->is_array() || var->type->is_matrix()))
440 if (type->is_matrix())
ir.cpp 402 assert(!op0->type->is_matrix());
403 assert(!op1->type->is_matrix());
651 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
691 if (type->is_matrix()) {
731 if (type->is_matrix() && value->type->is_matrix()) {
801 assert(type->is_scalar() || type->is_vector() || type->is_matrix()
1026 if (!type->is_vector() && !type->is_matrix()) {
    [all...]
ir_set_program_inouts.cpp 267 if (!(type->is_matrix() ||
286 if (type->fields.array->is_matrix())
ir_expression_operation.py 147 if ((op[0]->type == op[1]->type && !op[0]->type->is_matrix())
164 assert(op[0]->type->is_matrix() || op[1]->type->is_matrix());
    [all...]
link_atomics.cpp 248 if (!var->type->is_matrix())
loop_unroll.cpp 124 if ((ir->array->type->is_array() || ir->array->type->is_matrix()) &&
ir_constant_expression.cpp 423 } else if (vt->is_matrix()) {
737 if (array->type->is_matrix()) {
lower_packed_varyings.cpp 468 } else if (rvalue->type->is_matrix()) {
695 !((type->is_array() || type->is_record() || type->is_matrix()) &&
link_uniform_blocks.cpp 113 v->RowMajor = type->without_array()->is_matrix() && row_major;
lower_variable_index_to_cond_assign.cpp 122 return (ir->type->is_array() || ir->type->is_matrix());
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_types.cpp 43 if (type->is_matrix()) {
55 if (type->is_matrix()) {
  /external/mesa3d/src/compiler/
nir_types.cpp 40 if (type->is_matrix())
102 return type->is_matrix() ? type->matrix_columns : type->length;
178 return type->is_matrix();
glsl_types.cpp     [all...]
glsl_types.h 454 bool is_matrix() const function in struct:glsl_type
692 return is_matrix()
706 return is_matrix()
  /external/vulkan-validation-layers/libs/glm/detail/
type_gentype.hpp 63 static bool is_matrix();
123 static bool is_matrix();
171 // static const bool is_matrix = false;
type_gentype.inl 66 bool base<vT, cT, rT, pT>::is_matrix()
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_channel_expressions.cpp 196 assert(!expr->operands[i]->type->is_matrix());
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 713 if (uni->type->is_matrix()) {
929 if (!uni->type->is_matrix()) {
    [all...]

Completed in 423 milliseconds

1 2