-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Optimize Projection::determinant()
#103671
base: master
Are you sure you want to change the base?
Conversation
It would be good to mention in the comment what algorithm is used. |
Added the wiki link from the proposal |
Static checks fail because of code formatting. But after clang-format the code doesn't look as clear, maybe it makes sence to describe code briefly in comment, not just give link to wiki. |
updated the comment and used clang-format. |
Fix crash when removing breakpoints from DAP, and multiple fixes godotengine#104523 by rsubtil TextureEditors: Compile shader/material only once godotengine#104488 by arkology Renderer: Warn when images need to be converted due to their formats being unsupported by hardware godotengine#104480 by BlueCube3310 Optimize startup times by using ubrk_clone instead of ubrk_open. godotengine#104455 by Ivorforce Pause audio when game is paused godotengine#104420 by pafuent Optimize reverb by removing stray volatile from the undenormalize function signature. godotengine#104239 by Ivorforce Add Memory::alloc_static_zeroed to allocate memory that's filled with zeroes. godotengine#104124 by Ivorforce Switch occlusion culling to be based on depth instead of Euclidean distance godotengine#103798 by Rudolph-B Optimize Object::cast_to by assuming no virtual and multiple inheritance, gaining 7x throughput over dynamic_cast. godotengine#103708 Ivorforce Optimize Projection::determinant() godotengine#103671 by MaxIsJoe Reuse Sprite3D meshes across nodes when possible. godotengine#103312 by chocola-mint Reduce frequency of save_default_environment() calls godotengine#102991 by KoBeWi Optimize GDScriptLambdaCallable by skipping the unnecessary ObjectDB lookup for script. godotengine#102930 by Ivorforce
Optimize Projection::determinant() godotengine#103671 Co-Authored-By: MaxIsJoe <34368774+maxisjoe@users.noreply.github.com>
Implements ( godotengine/godot-proposals#11821 )