summaryrefslogtreecommitdiff
path: root/src/winwidget.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-03-21 20:23:33 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-03-21 20:23:33 +0100
commit56dec873222e8881847ebcb246eaf67d69e4e86a (patch)
treeb5b92d0c160b005a5a49ade5ccb857376ceb4859 /src/winwidget.h
parent283618a4a2dbf9a9f64c98d120b88ff272a7d777 (diff)
Add method to forcefully disable antialiasing (closes GH-17)
Diffstat (limited to 'src/winwidget.h')
-rw-r--r--src/winwidget.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/winwidget.h b/src/winwidget.h
index 8b4579c..922ecf5 100644
--- a/src/winwidget.h
+++ b/src/winwidget.h
@@ -82,6 +82,7 @@ struct __winwidget {
int h;
int im_w;
int im_h;
+ int force_aliasing;
double im_angle;
enum win_type type;
unsigned char had_resize, full_screen;
@@ -123,14 +124,14 @@ void winwidget_hide(winwidget winwid);
void winwidget_destroy_all(void);
void winwidget_free_image(winwidget w);
void winwidget_center_image(winwidget w);
-void winwidget_render_image(winwidget winwid, int resize, int alias);
+void winwidget_render_image(winwidget winwid, int resize, int force_alias);
void winwidget_rotate_image(winwidget winid, double angle);
void winwidget_move(winwidget winwid, int x, int y);
void winwidget_resize(winwidget winwid, int w, int h);
void winwidget_setup_pixmaps(winwidget winwid);
void winwidget_update_title(winwidget ret);
void winwidget_update_caption(winwidget winwid);
-void winwidget_rerender_all(int resize, int alias);
+void winwidget_rerender_all(int resize);
void winwidget_destroy_xwin(winwidget winwid);
void winwidget_set_pointer(winwidget winwid, int visible);