summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-11 13:47:39 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-11 13:57:06 +0000
commit7d660561cc9562731429ca06904b5e5711e90e27 (patch)
treef0c4bf93125e5bb6ebfe60dd436a84914e255f32 /desktop/browser.c
parent18abdadac83789019ae1a36a1e1cad2e98601efa (diff)
downloadnetsurf-7d660561cc9562731429ca06904b5e5711e90e27.tar.gz
netsurf-7d660561cc9562731429ca06904b5e5711e90e27.tar.bz2
Update knockout plotter to use new API
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index 442208c1b..3a7ac0ecc 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -238,7 +238,7 @@ bool browser_window_redraw(struct browser_window *bw, int x, int y,
*/
if (bw->window != NULL && ctx->plot->option_knockout) {
/* Root browser window: knockout end */
- knockout_plot_end();
+ knockout_plot_end(ctx);
}
return plot_ok;
@@ -314,7 +314,7 @@ bool browser_window_redraw(struct browser_window *bw, int x, int y,
if (bw->window != NULL && ctx->plot->option_knockout) {
/* Root browser window: end knockout */
- knockout_plot_end();
+ knockout_plot_end(ctx);
}
return plot_ok;