#ifndef RENDEROPS_H #define RENDEROPS_H #include "surface.h" #include typedef enum _TestType { PlainTest = 1 << 0, AlphaTest = 1 << 1, MaskTest = 1 << 2, TransformationTest = 1 << 3, FilterTest = 1 << 4, ConvolutionTest = 1 << 5, AllTests } TestType; typedef struct _TestScenario { int types; char *name; XRenderSurf *src; XRenderSurf *dst; XRenderSurf *mask; } TestScenario; TestScenario *create_test_scenarios(Display *disp, Window win, int w, int h, int *number); #endif