summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index ecc5fda..53d9697 100644
--- a/ted.h
+++ b/ted.h
@@ -82,6 +82,7 @@ typedef enum {
LANG_TYPESCRIPT = 13,
LANG_JSON = 14,
LANG_XML = 15,
+ LANG_GLSL = 16,
LANG_COUNT
} Language;
@@ -107,6 +108,7 @@ static LanguageName const language_names[] = {
{LANG_TYPESCRIPT, "TypeScript"},
{LANG_JSON, "JSON"},
{LANG_XML, "XML"},
+ {LANG_GLSL, "GLSL"},
};
static_assert_if_possible(arr_count(language_names) == LANG_COUNT)