-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
base: master
Are you sure you want to change the base?
Conversation
|
||
export default /* wgsl */ `\ | ||
// TODO(ibgreen): Hack for Layer uniforms (move to new "color" module?) | ||
|
There was a problem hiding this comment.
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
?
There was a problem hiding this comment.
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.
There was a problem hiding this 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, |
There was a problem hiding this comment.
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?
Ports point-cloud-layer to WebGPU. Requires fixes in visgl/luma.gl#2353.
Limitations:
A few scary edge cases to note:
@binding(2)
with@binding(4)
) can result in thebyteStride
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:Change List
normal
to project shaderScreen.Recording.2025-03-17.at.22.09.29.mov