-
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
geo-layers UBO #9036
geo-layers UBO #9036
Conversation
#else | ||
geometry.uv = vTexCoord; | ||
vec3 normal; | ||
if (flatShading) { | ||
if (simpleMesh.flatShading) { |
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.
Nit: is our object of attention called mesh
in some files and simpleMesh
in others? Possible to align? Or a good reason?
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.
Well, the "good" reason is that we have SimpleMeshLayer
in mesh-layers
and MeshLayer
which extends it in geo-layers
. I'm not aware of the history of why we have two layers, @Pessimistress would it be a good idea to combine the two? At any rate, I'm not going to address this as part of the UBO work
For #8997
Change List
MeshLayer
TripsLayer