Lines Matching refs:rgb
304 struct MALI_BLEND_FUNCTION rgb;
310 .rgb = { MALI_BLEND_FUNCTION_header }, \
317 cl[ 0] = __gen_uint(values->rgb.a, 0, 1) |
318 __gen_uint(values->rgb.negate_a, 3, 3) |
319 __gen_uint(values->rgb.b, 4, 5) |
320 __gen_uint(values->rgb.negate_b, 7, 7) |
321 __gen_uint(values->rgb.c, 8, 10) |
322 __gen_uint(values->rgb.invert_c, 11, 11) |
340 values->rgb.a = (enum mali_blend_operand_a)__gen_unpack_uint(cl, 0, 1);
341 values->rgb.negate_a = __gen_unpack_uint(cl, 3, 3);
342 values->rgb.b = (enum mali_blend_operand_b)__gen_unpack_uint(cl, 4, 5);
343 values->rgb.negate_b = __gen_unpack_uint(cl, 7, 7);
344 values->rgb.c = (enum mali_blend_operand_c)__gen_unpack_uint(cl, 8, 10);
345 values->rgb.invert_c = __gen_unpack_uint(cl, 11, 11);
359 MALI_BLEND_FUNCTION_print(fp, &values->rgb, indent + 2);