diff options
author | Eon S. Jeon <esjeon@hyunmu.am> | 2017-09-30 00:34:35 +0900 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2018-02-23 13:39:35 +0100 |
commit | 7817d0ec83b16dad6ad4f68039a58c371dbca38e (patch) | |
tree | 3eb7738977db5ed216f9aa8e70c992ac6588ca2c /config.def.h | |
parent | 723ff26c3618cf4db1ae34688509cbcdfed1412f (diff) |
Add support for WebGL
Allows enabling and disabling WebGL support built into WebKit.
The feature is turned off by default.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 2e735bf..6748f8a 100644 --- a/config.def.h +++ b/config.def.h @@ -46,6 +46,7 @@ static Parameter defconfig[ParameterLast] = { [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, }, [StrictTLS] = { { .i = 1 }, }, [Style] = { { .i = 1 }, }, + [WebGL] = { { .i = 0 }, }, [ZoomLevel] = { { .f = 1.0 }, }, }; |