-
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
Typed Arrays #858
Typed Arrays #858
Conversation
Conflicts: Source/Core/GeometryPipeline.js
Conflicts: Source/Core/Geometry.js Source/Core/GeometryPipeline.js Specs/Core/GeometryPipelineSpec.js
positions = new Float64Array(6 * 4 * 3); | ||
|
||
// +z face | ||
positions[0] = min.x; positions[1] = min.y; positions[2] = max.z; |
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.
Generally we don't put more than one line on the same line, but this is OK here I suppose.
Sorry, actually viewer needs some fixes. |
Conflicts: Source/Core/Geometry.js
…normal test to increase test performance.
@pjcozzi I think this is ready for another review. I'm not sure what needed fixing in the viewer (before merging with the batching branch). |
Viewer is OK; I must of had a build issue. I cleaned up a few things. Merging. |
Modify existing geometry and most of the geometry pipeline to use typed arrays.