Complete webgpu migration and shader conversion#22
Draft
tanepiper wants to merge 7 commits intowebgpu-upgradefrom
Draft
Conversation
This commit removes WebGL support and exclusively uses WebGPU with Three.js TSL for all rendering. The codebase has been updated to reflect this change, simplifying the renderer backend logic and ensuring compatibility with modern graphics APIs. Co-authored-by: me <[email protected]>
|
Cursor Agent can help with this pull request. Just |
|
|
This commit removes WebGL support and fully adopts WebGPU with Three.js Shading Language (TSL) for all rendering. It includes updates to core infrastructure, material factories, and individual material implementations, ensuring a modern, performant rendering pipeline. Documentation has been updated to reflect the WebGPU-only approach. Co-authored-by: me <[email protected]>
Co-authored-by: me <[email protected]>
This commit removes WebGL support and migrates celestial bodies to use WebGPU TSL for rendering. It includes updates to material factories, shader implementations, and dependency cleanup. Co-authored-by: me <[email protected]>
Migrates all remaining celestial objects to TSL shaders, removes GLSL, and finalizes the WebGPU migration. Co-authored-by: me <[email protected]>
Co-authored-by: me <[email protected]>
Co-authored-by: me <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fully migrate to WebGPU using
threejs/webgpuandthreejs/tsl, removing all WebGL dependencies.This PR establishes a WebGPU-only rendering pipeline and migrates the
DebrisEffectManagershaders to TSL, resolvingShaderMaterialincompatibility issues.