Home | History | Annotate | Download | only in glsl

Lines Matching refs:lowering

29  * of the most common cases, allowing the lowering code to be implemented once
111 * Determine if a particular type of lowering should occur
113 #define lowering(x) (this->lower & x)
257 if (lowering(DIV_TO_MUL_RCP))
276 if (lowering(SUB_TO_ADD_NEG))
281 if (ir->operands[1]->type->is_integer() && lowering(INT_DIV_TO_MUL_RCP))
283 else if (ir->operands[1]->type->is_float() && lowering(DIV_TO_MUL_RCP))
288 if (lowering(EXP_TO_EXP2))
293 if (lowering(LOG_TO_LOG2))
298 if (lowering(MOD_TO_FRACT) && ir->type->is_float())
303 if (lowering(POW_TO_EXP2))