Lines Matching refs:indent
121 #define pan_print(fp, T, var, indent) \
122 PREFIX2(T, print)(fp, &(var), indent)
144 #define pan_section_print(fp, A, S, var, indent) \
145 PREFIX4(A, SECTION, S, print)(fp, &(var), indent)
293 MALI_BLEND_FUNCTION_print(FILE *fp, const struct MALI_BLEND_FUNCTION * values, unsigned indent)
295 fprintf(fp, "%*sA: %s\n", indent, "", mali_blend_operand_a_as_str(values->a));
296 fprintf(fp, "%*sNegate A: %s\n", indent, "", values->negate_a ? "true" : "false");
297 fprintf(fp, "%*sB: %s\n", indent, "", mali_blend_operand_b_as_str(values->b));
298 fprintf(fp, "%*sNegate B: %s\n", indent, "", values->negate_b ? "true" : "false");
299 fprintf(fp, "%*sC: %s\n", indent, "", mali_blend_operand_c_as_str(values->c));
300 fprintf(fp, "%*sInvert C: %s\n", indent, "", values->invert_c ? "true" : "false");
356 MALI_BLEND_EQUATION_print(FILE *fp, const struct MALI_BLEND_EQUATION * values, unsigned indent)
358 fprintf(fp, "%*sRGB:\n", indent, "");
359 MALI_BLEND_FUNCTION_print(fp, &values->rgb, indent + 2);
360 fprintf(fp, "%*sAlpha:\n", indent, "");
361 MALI_BLEND_FUNCTION_print(fp, &values->alpha, indent + 2);
362 fprintf(fp, "%*sColor Mask: %u\n", indent, "", values->color_mask);