summaryrefslogtreecommitdiff
path: root/testscenarios.h
diff options
context:
space:
mode:
authorZack Rusin <zack@ppc64.localdomain>2006-03-17 18:13:42 -0500
committerZack Rusin <zack@ppc64.localdomain>2006-03-17 18:13:42 -0500
commita3a1c41a28915ecf81567f35a27040fd7275b9c5 (patch)
treea36abfebaa3bf24a5e79ef6f260b93f5707238cb /testscenarios.h
parent2568832d52ea08463fb8ec41fce99ab9b2e29f2e (diff)
add some command line options and example with a mask
Diffstat (limited to 'testscenarios.h')
-rw-r--r--testscenarios.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/testscenarios.h b/testscenarios.h
index d808dd9..de031bc 100644
--- a/testscenarios.h
+++ b/testscenarios.h
@@ -4,8 +4,19 @@
#include "surface.h"
#include <X11/extensions/Xrender.h>
+typedef enum _TestType {
+ PlainTest = 1 << 0,
+ AlphaTest = 1 << 1,
+ MaskTest = 1 << 2,
+ TransformationTest = 1 << 3,
+ FilterTest = 1 << 4,
+ AllTests
+} TestType;
+
+
typedef struct _TestScenario
{
+ int types;
char *name;
XRenderSurf *src;
XRenderSurf *dst;