Skip to content

Commit

Permalink
Merge pull request #21149 from Mugen87/dev51
Browse files Browse the repository at this point in the history
WebGPURenderer: Refactor glslang import.
  • Loading branch information
mrdoob committed Jan 26, 2021
2 parents b15bd85 + ca306c0 commit 3d153ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/jsm/libs/glslang.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions examples/jsm/renderers/webgpu/WebGPURenderer.js
Expand Up @@ -10,9 +10,10 @@ import WebGPUBindings from './WebGPUBindings.js';
import WebGPURenderLists from './WebGPURenderLists.js';
import WebGPUTextures from './WebGPUTextures.js';
import WebGPUBackground from './WebGPUBackground.js';

import WebGPUNodes from './nodes/WebGPUNodes.js';

import glslang from '../../libs/glslang.js';

import { Frustum, Matrix4, Vector3, Color } from '../../../../build/three.module.js';

console.info( 'THREE.WebGPURenderer: Modified Matrix4.makePerspective() and Matrix4.makeOrtographic() to work with WebGPU, see https://github.com/mrdoob/three.js/issues/20276.' );
Expand Down Expand Up @@ -157,9 +158,7 @@ class WebGPURenderer {

const device = await adapter.requestDevice( deviceDescriptor );

// https://cdn.jsdelivr.net/npm/@webgpu/glslang@0.0.15/dist/web-devel/glslang.js
const glslang = await import( '../../libs/glslang.js' );
const compiler = await glslang.default();
const compiler = await glslang();

const context = ( parameters.context !== undefined ) ? parameters.context : this.domElement.getContext( 'gpupresent' );

Expand Down

0 comments on commit 3d153ab

Please sign in to comment.