Displaying 2 results from an estimated 2 matches for "cubecheckftbproc".
2007 Jun 12
0
[PATCH] Made checkFTB wrapable (needed by cubereflex plugin).
...s changed, 8 insertions(+), 1 deletions(-)
diff --git a/include/cube.h b/include/cube.h
index a8baf1f..c360a73 100644
--- a/include/cube.h
+++ b/include/cube.h
@@ -75,6 +75,11 @@ typedef void (*CubePaintTopBottomProc) (CompScreen *s,
CompOutput *output,
int size);
+typedef Bool (*CubeCheckFTBProc) (CompScreen *s,
+ const ScreenPaintAttrib *sAttrib,
+ const CompTransform *transform,
+ CompOutput *output);
+
typedef enum _PaintOrder
{
BTF = 0,
@@ -103,6 +108,7 @@ typedef struct _CubeScreen {
CubeGetRotationProc getRotation;
C...
2007 Jun 12
0
[PATCH] Combined checkFTB and capDirection into one checkOrientation function.
...43 insertions(+), 95 deletions(-)
diff --git a/include/cube.h b/include/cube.h
index 0a87626..293bad1 100644
--- a/include/cube.h
+++ b/include/cube.h
@@ -87,16 +87,11 @@ typedef void (*CubePaintInsideProc) (CompScreen *s,
CompOutput *output,
int size);
-typedef Bool (*CubeCheckFTBProc) (CompScreen *s,
- const ScreenPaintAttrib *sAttrib,
- const CompTransform *transform,
- CompOutput *output);
-
-typedef Bool (*CubeCapDirectionProc) (CompScreen *s,
- const ScreenPaintAttrib *sAttrib,
- const CompTransform...