diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-12 15:14:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-12 15:14:24 -0600 |
commit | 5bb5839ff76e7b6c224d8ce6b4bcbdf3c1253271 (patch) | |
tree | ae6f0c77e0a5895229b0d547dd30311944a56cab /twin | |
parent | 8a7c183152bd9ce77b57e045f93f034826b91c30 (diff) | |
download | tdebase-5bb5839ff76e7b6c224d8ce6b4bcbdf3c1253271.tar.gz tdebase-5bb5839ff76e7b6c224d8ce6b4bcbdf3c1253271.zip |
Fix compilation errors from changed compton API
Diffstat (limited to 'twin')
-rw-r--r-- | twin/compton-tde/compton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c index f49518b7b..375a95630 100644 --- a/twin/compton-tde/compton.c +++ b/twin/compton-tde/compton.c @@ -2100,11 +2100,11 @@ paint_all(session_t *ps, XserverRegion region, XserverRegion region_real, win *t { if (w->show_root_tile) { glx_render(ps, ps->root_tile_paint.ptex, w->a.x, w->a.y, w->a.x, w->a.y, w->widthb, w->heightb, - ps->glx_z, 1.0, false, reg_paint, &cache_reg); + ps->psglx->z, 1.0, false, false, reg_paint, &cache_reg, NULL); } else if (w->show_black_background) { glx_render_specified_color(ps, 0, w->a.x, w->a.y, w->widthb, w->heightb, - ps->glx_z, reg_paint, &cache_reg); + ps->psglx->z, reg_paint, &cache_reg); } break; } |