summaryrefslogtreecommitdiff
path: root/testscenarios.h
diff options
context:
space:
mode:
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;