summaryrefslogtreecommitdiff
path: root/amiga/options.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-25 22:32:38 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-25 22:32:38 +0000
commit6ac80f3e05a073ed3f37d187d37849481f7c82a9 (patch)
tree15bfe91716bea7903e0f347228412517b94a1ce4 /amiga/options.h
parent181615779dd502d5aceaf6928ebe8d8db28be96e (diff)
downloadnetsurf-6ac80f3e05a073ed3f37d187d37849481f7c82a9.tar.gz
netsurf-6ac80f3e05a073ed3f37d187d37849481f7c82a9.tar.bz2
Vague attempt at direct rendering
THIS IS NOT AND PROBABLY NEVER WILL BE IN ANY WAY USEFUL EXCEPT FOR DEBUGGING! In particular it will probably crash when opening/closing multiple windows and the display is offset incorrectly. svn path=/trunk/netsurf/; revision=7547
Diffstat (limited to 'amiga/options.h')
-rw-r--r--amiga/options.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/amiga/options.h b/amiga/options.h
index 6ad5bcd32..dc6d1a3b3 100644
--- a/amiga/options.h
+++ b/amiga/options.h
@@ -39,6 +39,7 @@ extern char *option_recent_file;
extern char *option_arexx_dir;
extern char *option_download_dir;
extern bool option_faster_scroll;
+extern bool option_direct_render;
#define EXTRA_OPTION_DEFINE \
bool option_verbose_log = false; \
@@ -60,6 +61,7 @@ char *option_recent_file = 0; \
char *option_arexx_dir = 0; \
char *option_download_dir = 0; \
bool option_faster_scroll = false; \
+bool option_direct_render = false; \
#define EXTRA_OPTION_TABLE \
{ "verbose_log", OPTION_BOOL, &option_verbose_log}, \
@@ -80,5 +82,6 @@ bool option_faster_scroll = false; \
{ "recent_file", OPTION_STRING, &option_recent_file }, \
{ "arexx_dir", OPTION_STRING, &option_arexx_dir }, \
{ "download_dir", OPTION_STRING, &option_download_dir }, \
-{ "faster_scroll", OPTION_BOOL, &option_faster_scroll},
+{ "faster_scroll", OPTION_BOOL, &option_faster_scroll}, \
+{ "debug_dr", OPTION_BOOL, &option_direct_render},
#endif