summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-04-01 15:37:51 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-04-13 15:24:54 -0700
commitc6bbcba1102cb4420303afa0f6c1338e5885cf3d (patch)
treec3e1e0bb309bbabdb8f656193b011535bf820c26
parentbd0f1e637f960962203cb5bb7cf0c5ce58cb2cec (diff)
Eliminate overlaps in rects and traps
Part-of: <https://gitlab.freedesktop.org/xorg/test/x11perf/-/merge_requests/1>
-rw-r--r--do_tests.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/do_tests.c b/do_tests.c
index b9bdec1..114c87d 100644
--- a/do_tests.c
+++ b/do_tests.c
@@ -783,7 +783,7 @@ Test test[] = {
"Fill 100x100 tiled trapezoid (216x208 tile)",
InitTrapezoids, DoTrapezoids, NullProc, EndTrapezoids,
V1_3FEATURE, ROP, 0,
- {36, 100, "escherknot", NULL, FillTiled}},
+ {25, 100, "escherknot", NULL, FillTiled}},
{"-eschertiletrap300", "Fill 300x300 tiled trapezoid (216x208 tile)", NULL,
InitTrapezoids, DoTrapezoids, NullProc, EndTrapezoids,
V1_4FEATURE, ROP, 0,
@@ -816,7 +816,7 @@ Test test[] = {
{"-aa4trap100", "Fill 100x100 aa trap with 4 bit alpha", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
- {POLY, 100, "4" }},
+ {25, 100, "4" }},
{"-aa4trap300", "Fill 300x300 aa trap with 4 bit alpha", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
@@ -832,11 +832,11 @@ Test test[] = {
{"-aa1trap100", "Fill 100x100 aa trap with 1 bit alpha", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
- {POLY, 100, "1" }},
+ {25, 100, "1" }},
{"-aa1trap300", "Fill 300x300 aa trap with 1 bit alpha", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
- {POLY, 300, "1" }},
+ {2, 300, "1" }},
{"-aatrap2x1", "Fill 2x1 aa trap", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
@@ -849,11 +849,11 @@ Test test[] = {
{"-aatrap2x100", "Fill 2x100 aa trap", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
- {POLY, 100, "8,2" }},
+ {25, 100, "8,2" }},
{"-aatrap2x300", "Fill 2x300 aa trap", NULL,
InitFixedTraps, DoFixedTraps, NullProc, EndFixedTraps,
V1_5FEATURE, NONROP, 0,
- {POLY, 300, "8,2" }},
+ {2, 300, "8,2" }},
{"-aatrapezoid1", "Fill 1x1 aa trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
@@ -866,11 +866,11 @@ Test test[] = {
{"-aatrapezoid100", "Fill 100x100 aa trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
V1_5FEATURE, NONROP, 0,
- {POLY, 100 }},
+ {25, 100 }},
{"-aatrapezoid300", "Fill 300x300 aa trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
V1_5FEATURE, NONROP, 0,
- {POLY, 300 }},
+ {2, 300 }},
{"-addaatrapezoid1", "Fill 1x1 aa pre-added trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
V1_5FEATURE, NONROP, 0,
@@ -882,11 +882,11 @@ Test test[] = {
{"-addaatrapezoid100", "Fill 100x100 aa pre-added trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
V1_5FEATURE, NONROP, 0,
- {POLY, 100, "add" }},
+ {25, 100, "add" }},
{"-addaatrapezoid300", "Fill 300x300 aa pre-added trapezoid", NULL,
InitFixedTrapezoids, DoFixedTrapezoids, NullProc, EndFixedTrapezoids,
V1_5FEATURE, NONROP, 0,
- {POLY, 300, "add" }},
+ {2, 300, "add" }},
#endif
{"-complex10", "Fill 10-pixel/side complex polygon", NULL,
InitComplexPoly, DoComplexPoly, NullProc, EndComplexPoly,