Add missing goog.require

This commit is contained in:
Frederic Junod
2017-02-03 12:47:13 +01:00
parent 5763e1d145
commit 9d263629e6
3 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
goog.provide('ol.render.webgl');
goog.require('ol');
if (ol.ENABLE_WEBGL) {
/**

View File

@@ -1,5 +1,7 @@
goog.provide('ol.webgl');
goog.require('ol');
if (ol.ENABLE_WEBGL) {

View File

@@ -1,5 +1,6 @@
goog.provide('ol.webgl.Shader');
goog.require('ol');
goog.require('ol.functions');