From 5f44d5e8e2245e28953930b4a6e76c6f787f2764 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 8 Feb 2018 09:29:14 +0100 Subject: [PATCH] Fix indentation in shaderlocations.mustache --- src/ol/webgl/shaderlocations.mustache | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/webgl/shaderlocations.mustache b/src/ol/webgl/shaderlocations.mustache index 53553b326f..cc30274475 100644 --- a/src/ol/webgl/shaderlocations.mustache +++ b/src/ol/webgl/shaderlocations.mustache @@ -16,7 +16,7 @@ import {DEBUG_WEBGL} from '../../../index.js'; * @type {WebGLUniformLocation} */ this.{{originalName}} = gl.getUniformLocation( - program, DEBUG_WEBGL ? '{{originalName}}' : '{{shortName}}'); + program, DEBUG_WEBGL ? '{{originalName}}' : '{{shortName}}'); {{/uniforms}} {{#attributes}} @@ -24,7 +24,7 @@ import {DEBUG_WEBGL} from '../../../index.js'; * @type {number} */ this.{{originalName}} = gl.getAttribLocation( - program, DEBUG_WEBGL ? '{{originalName}}' : '{{shortName}}'); + program, DEBUG_WEBGL ? '{{originalName}}' : '{{shortName}}'); {{/attributes}} };