summaryrefslogtreecommitdiff
path: root/solar.c
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2024-08-29 19:27:26 +0000
committerrodri <rgl@antares-labs.eu>2024-08-29 19:27:26 +0000
commit799c2a25df4283ba46747864dc669c8905b540fc (patch)
tree1fba24ffa31f0681d66c166f32a5323df65b75f1 /solar.c
parent3b06ad551d6706907b0d6cbf25807e1ef7e62ca9 (diff)
download3dee-799c2a25df4283ba46747864dc669c8905b540fc.tar.gz
3dee-799c2a25df4283ba46747864dc669c8905b540fc.tar.bz2
3dee-799c2a25df4283ba46747864dc669c8905b540fc.zip
use the new raster interface.
Diffstat (limited to 'solar.c')
-rw-r--r--solar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/solar.c b/solar.c
index 6a5bc75..470c954 100644
--- a/solar.c
+++ b/solar.c
@@ -573,7 +573,7 @@ renderproc(void *)
Δt = nsec() - t0;
if(Δt > HZ2MS(60)*1000000ULL){
lockdisplay(display);
- camera->view->draw(camera->view, screenb);
+ camera->view->draw(camera->view, screenb, nil);
unlockdisplay(display);
nbsend(drawc, nil);
t0 += Δt;