diff options
author | Danny Baumann <dannybaumann@web.de> | 2007-09-22 14:14:48 +0200 |
---|---|---|
committer | Danny Baumann <dannybaumann@web.de> | 2007-09-22 14:14:48 +0200 |
commit | 590634f29adaa2e240a3b8cbf899ab7b774a3783 (patch) | |
tree | 2d965d191c58167e99eb3c988e0354fed8a4400d | |
parent | fedb21c8ad493193891cb09594cce4a9e488b693 (diff) | |
download | 3d-590634f29adaa2e240a3b8cbf899ab7b774a3783.tar.gz 3d-590634f29adaa2e240a3b8cbf899ab7b774a3783.tar.bz2 |
Give function a more meaningful name.
-rw-r--r-- | 3d.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -197,11 +197,11 @@ static Bool tdPaintWindow (CompWindow *w, unsigned int mask); static Bool -tdPaintWindowDepth (CompWindow *w, - const WindowPaintAttrib *attrib, - const CompTransform *transform, - Region region, - unsigned int mask) +tdPaintWindowWithDepth (CompWindow *w, + const WindowPaintAttrib *attrib, + const CompTransform *transform, + Region region, + unsigned int mask) { Bool wasCulled; Bool status; @@ -454,7 +454,8 @@ tdPaintWindow (CompWindow *w, { if (tdGetWidth (s)) { - status = tdPaintWindowDepth (w, attrib, transform, region, mask); + status = tdPaintWindowWithDepth (w, attrib, transform, + region, mask); } else { |