]> O.S.I.I.S - jp/vkvg.git/commitdiff
add fill rule to test detail output
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Sat, 19 Feb 2022 15:25:44 +0000 (16:25 +0100)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Sat, 19 Feb 2022 15:25:44 +0000 (16:25 +0100)
tests/common/test.c

index 6a0ace91c8793107bbd0fb69ecf1486c44105af6..6dac99e6802076bb3103883d95e5d7fc31da9aa4 100644 (file)
@@ -257,6 +257,11 @@ void _print_details_and_exit(void) {
                printf("Offscreen:\ttrue\n");
        else
                printf("Offscreen:\tfalse\n");
+       if (fill_rule == VKVG_FILL_RULE_EVEN_ODD)
+               printf("Fillrule:\tEven/Odd\n");
+       else
+               printf("Fillrule:\tNon zero\n");
+
        printf("\n");
        exit(0);
 }