From 0ad2375e1047353fc65fabce3ac9123dc095179e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Fri, 15 Mar 2019 23:32:45 +0100 Subject: [core] remove a_/u_ prefix from attribute/uniform types --- scripts/generate-style-code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/generate-style-code.js b/scripts/generate-style-code.js index ae25a856a8..72f4857a96 100755 --- a/scripts/generate-style-code.js +++ b/scripts/generate-style-code.js @@ -99,7 +99,7 @@ function attributeUniformType(property, type) { [ property.name.replace(type + '-', '').replace(/-/g, '_') ]; return names.map(name => { - return `attributes::a_${name}, uniforms::u_${name}` + return `attributes::${name}, uniforms::${name}` }).join(', '); } -- cgit v1.2.1