Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Ib Green committed Apr 8, 2019
1 parent 3c3365f commit 5e5c223
Show file tree
Hide file tree
Showing 22 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions modules/core/src/index.js
Expand Up @@ -79,16 +79,16 @@ export {default as Geometry} from './geometry/geometry';
export {default as Material} from './materials/material';
export {AmbientLight, DirectionalLight, PointLight} from './lighting/light-source';

// CORE
export {default as AnimationLoop} from './core/animation-loop';
export {encodePickingColor, decodePickingColor, getNullPickingColor} from './core/picking-colors';
export {default as Model} from './core/model';
export {default as Transform} from './core/transform';
export {default as ClipSpace} from './core/clip-space';
// LIB
export {default as AnimationLoop} from './lib/animation-loop';
export {encodePickingColor, decodePickingColor, getNullPickingColor} from './lib/picking-colors';
export {default as Model} from './lib/model';
export {default as Transform} from './lib/transform';
export {default as ClipSpace} from './lib/clip-space';

// Experimental core exports
export {default as _ShaderCache} from './core/shader-cache';
export {default as _AnimationLoopProxy} from './core/animation-loop-proxy';
export {default as _ShaderCache} from './lib/shader-cache';
export {default as _AnimationLoopProxy} from './lib/animation-loop-proxy';

// Multipass Rendering
export {default as _MultiPassRenderer} from './multipass/multi-pass-renderer';
Expand Down
File renamed without changes.
File renamed without changes.
@@ -1,6 +1,6 @@
// ClipSpace
import GL from '@luma.gl/constants';
import Model from '../core/model';
import Model from '../lib/model';
import Geometry from '../geometry/geometry';

const CLIPSPACE_VERTEX_SHADER = `\
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/core/src/multipass/copy-pass.js
Expand Up @@ -4,7 +4,7 @@
// Attribution: This class and the multipass system were inspired by
// the THREE.js EffectComposer and *Pass classes

import ClipSpace from '../core/clip-space';
import ClipSpace from '../lib/clip-space';
import Pass from './pass';

const fs = `\
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/multipass/shader-module-pass.js
Expand Up @@ -4,7 +4,7 @@

import Pass from './pass';
import CompositePass from './composite-pass';
import ClipSpace from '../core/clip-space';
import ClipSpace from '../lib/clip-space';

import {normalizeShaderModule} from '@luma.gl/shadertools';

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/multipass/texture-pass.js
Expand Up @@ -4,7 +4,7 @@
// Attribution: This class and the multipass system were inspired by
// the THREE.js EffectComposer and *Pass classes

import {default as ClipSpace} from '../core/clip-space';
import {default as ClipSpace} from '../lib/clip-space';
import Pass from './pass';

const fs = `\
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/scenegraph/nodes/model-node.js
@@ -1,4 +1,4 @@
import Model from '../../core/model';
import Model from '../../lib/model';
import ScenegraphNode from './scenegraph-node';

export default class ModelNode extends ScenegraphNode {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/core/test/webgl-dependent-tests.js
@@ -1,2 +1,2 @@
import './core';
import './lib';
import './debug/seer-integration';

0 comments on commit 5e5c223

Please sign in to comment.