We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
glObjectLabel is being called for every update in setVertexAttrib instead of just once right after creation:
glObjectLabel
setVertexAttrib
jmonkeyengine/jme3-core/src/main/java/com/jme3/renderer/opengl/GLRenderer.java
Line 3220 in 03c26a8
This actually shows up in RenderDoc and in a CPU usage profile. Also vb.getName() never returns null.
vb.getName()
Also if not done right after creation it's easy to miss something, e.g. index buffers are never set cause of
Lines 3116 to 3118 in 03c26a8
The text was updated successfully, but these errors were encountered:
No branches or pull requests
glObjectLabel
is being called for every update insetVertexAttrib
instead of just once right after creation:jmonkeyengine/jme3-core/src/main/java/com/jme3/renderer/opengl/GLRenderer.java
Line 3220 in 03c26a8
This actually shows up in RenderDoc and in a CPU usage profile.
Also
vb.getName()
never returns null.Also if not done right after creation it's easy to miss something, e.g. index buffers are never set cause of
jmonkeyengine/jme3-core/src/main/java/com/jme3/renderer/opengl/GLRenderer.java
Lines 3116 to 3118 in 03c26a8
The text was updated successfully, but these errors were encountered: