From: Matt Birkholz Date: Thu, 24 Jan 2019 19:42:24 +0000 (-0700) Subject: x11: Fix declaration of x_graphics_set_clip_rectangle. X-Git-Tag: mit-scheme-pucked-10.1.10~6^2~24 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=8bdee68690a0a8e70b4f9c6183cf80f668f0cad4;p=mit-scheme.git x11: Fix declaration of x_graphics_set_clip_rectangle. --- diff --git a/src/x11/x11-shim.h b/src/x11/x11-shim.h index ad08660e6..0aedde11a 100644 --- a/src/x11/x11-shim.h +++ b/src/x11/x11-shim.h @@ -168,8 +168,8 @@ extern void x_graphics_set_vdc_extent (struct xwindow * xw, extern void x_graphics_vdc_extent (struct xwindow * xw, float * results); extern void x_graphics_reset_clip_rectangle (struct xwindow * xw); extern void x_graphics_set_clip_rectangle (struct xwindow * xw, - int x_left, int y_bottom, - int x_right, int y_top); + float x_left, float y_bottom, + float x_right, float y_top); extern void x_graphics_reconfigure (struct xwindow * xw, unsigned int width, unsigned int height); extern struct xwindow * x_graphics_open_window (struct xdisplay * xd,