-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Move TypedArray utilities #16109
Move TypedArray utilities #16109
Conversation
Please make sure to label your PR with "bug", "new feature" or "breaking change" label(s). |
WebGL2 visualization test reporter: |
Visualization tests for WebGPU |
WebGL2 visualization test reporter: |
Visualization tests for WebGPU |
Visualization tests for WebGPU |
WebGL2 visualization test reporter: |
Was this part of an older itereation of the PR? |
Yes, this commit was from an older iteration of the PR. I first wanted to replace TypedArray with TypedArrayLike, then realized I preferred the TypedArray over TypedArrayLike, and undid it. (Using the union of all TypedArrays allows us to access its utility functions like .every(), .slice(), etc. without adding them to the interface.) |
WebGL2 visualization test reporter: |
Visualization tests for WebGPU |
Move TypedArray utilities to common buffer utility file. Replace TypedArray with TypedArrayLike in core types.