summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-03-07 22:38:58 +0100
committerGitHub <noreply@github.com>2018-03-07 22:38:58 +0100
commitacacba3fdccceb1a627aff99c1e24384e52065ef (patch)
tree6d6ac6acc6586b449f8671670f85c43fdffee19e /core
parent900384a622c7f3094540a43670421469e4ee0b06 (diff)
parent802b6d366904029b8b6fc5c32843e9aa6b7510af (diff)
Merge pull request #17343 from eska014/wasm-webgl1
Reinstate WebGL 1.0 (GLES2) driver in HTML5 platform
Diffstat (limited to 'core')
-rw-r--r--core/os/os.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/os/os.h b/core/os/os.h
index f8033c2546..5a2c998782 100644
--- a/core/os/os.h
+++ b/core/os/os.h
@@ -46,7 +46,8 @@
enum VideoDriver {
VIDEO_DRIVER_GLES3,
- VIDEO_DRIVER_GLES2
+ VIDEO_DRIVER_GLES2,
+ VIDEO_DRIVER_MAX,
};
class OS {