summaryrefslogtreecommitdiff
path: root/riscos/buffer.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-07-19 23:35:12 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-07-19 23:35:12 +0000
commitd18f4397c7906880facdf7dc533d663e086771e6 (patch)
tree0677d7be5b57a18192f4ac8c5560ebf7419644b1 /riscos/buffer.h
parent2fedec98f917f221e228f71df62670a8e43c4d6a (diff)
downloadnetsurf-d18f4397c7906880facdf7dc533d663e086771e6.tar.gz
netsurf-d18f4397c7906880facdf7dc533d663e086771e6.tar.bz2
[project @ 2004-07-19 23:35:12 by rjw]
Double buffering for animations to remove flicker. Background font blending turned on by default. svn path=/import/netsurf/; revision=1121
Diffstat (limited to 'riscos/buffer.h')
-rw-r--r--riscos/buffer.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/riscos/buffer.h b/riscos/buffer.h
new file mode 100644
index 000000000..8340dd24f
--- /dev/null
+++ b/riscos/buffer.h
@@ -0,0 +1,20 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
+ */
+
+/** \file
+ * Screen buffering (interface).
+ */
+
+#ifndef _NETSURF_RISCOS_BUFFER_H_
+#define _NETSURF_RISCOS_BUFFER_H_
+
+#include "oslib/wimp.h"
+
+void ro_gui_buffer_open(wimp_draw *redraw);
+void ro_gui_buffer_close(void);
+
+#endif