Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions

View File

@@ -1,6 +1,4 @@
goog.require('ol.webgl.Buffer');
import _ol_webgl_Buffer_ from '../../../../src/ol/webgl/Buffer.js';
describe('ol.webgl.Buffer', function() {
@@ -11,7 +9,7 @@ describe('ol.webgl.Buffer', function() {
var b;
beforeEach(function() {
b = new ol.webgl.Buffer();
b = new _ol_webgl_Buffer_();
});
it('constructs an empty instance', function() {
@@ -24,7 +22,7 @@ describe('ol.webgl.Buffer', function() {
var b;
beforeEach(function() {
b = new ol.webgl.Buffer([0, 1, 2, 3]);
b = new _ol_webgl_Buffer_([0, 1, 2, 3]);
});
it('constructs a populated instance', function() {
@@ -39,7 +37,7 @@ describe('ol.webgl.Buffer', function() {
var b;
beforeEach(function() {
b = new ol.webgl.Buffer();
b = new _ol_webgl_Buffer_();
});
describe('getArray', function() {