Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing WebGPURenderer backwards compatibility #29942

Draft
wants to merge 3 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Three.WebGPU.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from './Three.core.js';

export * from './materials/nodes/NodeMaterials.js';
export { default as WebGPURenderer } from './renderers/webgpu/WebGPURenderer.js';
export { default as WebGLRenderer, default as WebGPURenderer } from './renderers/webgpu/WebGPURenderer.js';
export { default as Lighting } from './renderers/common/Lighting.js';
export { default as BundleGroup } from './renderers/common/BundleGroup.js';
export { default as QuadMesh } from './renderers/common/QuadMesh.js';
Expand Down
4 changes: 2 additions & 2 deletions utils/build/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const builds = [
{
input: {
'three.core.js': 'src/Three.core.js',
'three.module.js': 'src/Three.js',
'three.module.js': 'src/Three.WebGPU.js',
'three.webgpu.js': 'src/Three.WebGPU.js',
},
plugins: [
Expand Down Expand Up @@ -144,7 +144,7 @@ const builds = [
{
input: {
'three.core.min.js': 'src/Three.core.js',
'three.module.min.js': 'src/Three.js',
'three.module.min.js': 'src/Three.WebGPU.js',
'three.webgpu.min.js': 'src/Three.WebGPU.js',
},
plugins: [
Expand Down
Loading