Skip to content

Commit

Permalink
reorder require modules to work around bug in AMDclean
Browse files Browse the repository at this point in the history
  • Loading branch information
biasmv committed Aug 3, 2015
1 parent 04136d6 commit 8e52738
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/gfx/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@

define(
[
'../gl-matrix',
'../geom',
'./geom-builders',
'./mesh-geom',
'./line-geom',
'./billboard-geom',
'./line-geom',
'./mesh-geom',
'./geom-builders',
'./vert-assoc',
'../color'
'../color',
'../gl-matrix'
],
function(
glMatrix,
geom,
geomBuilders,
MeshGeom,
LineGeom,
BillboardGeom,
LineGeom,
MeshGeom,
geomBuilders,
vertAssoc,
color) {
color,
glMatrix) {
"use strict";

var vec3 = glMatrix.vec3;
Expand Down

0 comments on commit 8e52738

Please sign in to comment.