Fix imports

This commit is contained in:
Daniel Imms
2018-11-24 05:48:05 -08:00
parent 569abde8c7
commit 186b2be4b9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import WebglCharAtlas from './WebglCharAtlas';
import { IWebGL2RenderingContext, IWebGLVertexArrayObject, IRenderModel, IRasterizedGlyph } from './Types';
import { INDICIES_PER_CELL } from './WebglRenderer';
import { COMBINED_CHAR_BIT_MASK } from './RenderModel';
import { fill, slice } from '../../core/TypedArrayUtils';
import { fill, slice } from '../../common/TypedArrayUtils';
interface IVertices {
attributes: Float32Array;
+1 -1
View File
@@ -9,7 +9,7 @@ import { createProgram, expandFloat32Array, PROJECTION_MATRIX } from './WebglUti
import { IColor } from '../../shared/Types';
import { IRenderModel, IWebGLVertexArrayObject, IWebGL2RenderingContext, ISelectionRenderModel } from './Types';
import { RENDER_INVERTED_DEFAULT_COLOR } from './RenderModel';
import { fill } from '../../core/TypedArrayUtils';
import { fill } from '../../common/TypedArrayUtils';
const enum VertexAttribLocations {
POSITION = 0,
+1 -1
View File
@@ -4,7 +4,7 @@
*/
import { IRenderModel, ISelectionRenderModel } from './Types';
import { fill } from '../../core/TypedArrayUtils';
import { fill } from '../../common/TypedArrayUtils';
export const RENDER_MODEL_INDICIES_PER_CELL = 4;