search for: cubecheckftb

Displaying 3 results from an estimated 3 matches for "cubecheckftb".

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 CompTrans...
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;...
2007 Apr 12
1
[PATCH] Transparent cube
.... When doing FTB drawing, it will find the bottom-fullscreen window, and when doing both BTF / FTB drawing, it'll find the top and the bottom fullscreen windows. I'm not sure weather this is really wrong, so again I'd like to hear your opinion if my patch makes bugs on this area. - The cubeCheckFTB function (checks if the next-painted face should be drawn with FTB flag) seems to not work in some occasions with inside cube (works perfectly with outside cube). I don't know why this happens though. - Because of the calculations-changes i made for making transparent cube to work, xRotate has...