diff options
author | Joel Bosveld <Joel.Bosveld@gmail.com> | 2009-06-24 20:56:20 +0800 |
---|---|---|
committer | Joel Bosveld <Joel.Bosveld@gmail.com> | 2009-06-24 20:56:20 +0800 |
commit | 24691513bcceb730686cc765e5022e22b1822a58 (patch) | |
tree | 58f94b0da62287cb80b6c14d0fb706ce7d630132 /include | |
parent | 31d393708f8c69eea0c92348fa06b0036006a7b9 (diff) |
Allow triangles to have coords in window but act as if they don't (for XYToWin)
The reason for this is to allow for proper handling of transformations such as splitting a window and cutting a hole out. In those circumstances, we would like the hole the have coordinates in the window (for proper behaviour during grabs), but we would also like for it to appear as not part of the window in XYToWindow.
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/Xcomposite.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/X11/extensions/Xcomposite.h b/include/X11/extensions/Xcomposite.h index a6a70c5..bc249ea 100644 --- a/include/X11/extensions/Xcomposite.h +++ b/include/X11/extensions/Xcomposite.h @@ -97,7 +97,8 @@ void XCompositeSetTriangularCoordinateMesh (Display *dpy, Window window, _Xconst XTriangle *triangle, - int nTriangle); + int nNormTriangle, + int nGrabTriangle); _XFUNCPROTOEND |