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

feat: Port point-cloud-layer to WebGPU #9531

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

Kaapp
Copy link
Collaborator

@Kaapp Kaapp commented Mar 17, 2025

Ports point-cloud-layer to WebGPU. Requires fixes in visgl/luma.gl#2353.

Limitations:

  • LASLoader will not work yet as loading data asynchronously requires buffers to be recreated which luma will not currently handle correctly.

A few scary edge cases to note:

  • Unusued uniforms will be trimmed from the shader at compilation - however we will still try to provide them as they are in the source code. This results in an error like the following:
luma.gl: bindGroup creation: Number of entries (x) did not match the expected number of entries (y) for [BindGroupLayout (unlabeled)]
  • The order of the supplied attributes is quite important, luma will correctly calculate the sizes for each buffer, but re-ordering the bindings (e.g. swapping @binding(2) with @binding(4)) can result in the byteStride changing, I believe due to byte alignment but I'm not certain. If this happens, an error like the following will be displayed as the buffers are no longer big enough:
Vertex range (x) requires a larger buffer (y) than the bound buffer size (z) of the vertex buffer at slot a with stride b.

Change List

  • Port point-cloud-layer shaders to WGSL.
  • Add normal to project shader
  • Add point-cloud example temporarily using Airports data to avoid async loading complications.
Screen.Recording.2025-03-17.at.22.09.29.mov


export default /* wgsl */ `\
// TODO(ibgreen): Hack for Layer uniforms (move to new "color" module?)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ibgreen any reason why WGSL cannot be added to layer-uniforms.ts?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose they could. I noticed that the only layer uniform we have is opacity, and given that we need to add support for premultiplied colors, so we likely need a color module that would be a natural home for an opacity uniforms, so I felt that might replace layer uniforms.

@coveralls
Copy link

coveralls commented Mar 19, 2025

Coverage Status

coverage: 91.63% (+0.003%) from 91.627%
when pulling 690563b on Kaapp:cpk/point-cloud-webgpu
into cb17e82 on visgl:master.

Copy link
Collaborator

@ibgreen ibgreen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your luma changes are available in 9.1.6

@@ -199,6 +215,7 @@ export default class PointCloudLayer<DataT = any, ExtraPropsT extends {} = {}> e
positions: new Float32Array(positions)
}
}),
parameters,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you test under webgl? I had issues with these changes in the layer. Didn't get to the bottom of it, but maybe supplying an undefined parameters option is triggering something?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants