| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| | |
Unify y-flip behavior for sky in RD backends
|
| | |
|
|/
|
|
| |
coverage.
|
|\
| |
| |
| | |
Ensure shadow material and mesh are not used with wireframe mode
|
| |
| |
| |
| | |
And in the Compatibility renderer actually use the wireframe render mode
|
|\ \
| | |
| | |
| | | |
Faster exit from `_cull_canvas_item` if alpha is zero
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Add `multimesh_get_buffer_rd_rid` method to `RenderingServer`.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fixed style error.
Updated dummy mesh_storage to move from cpp to h the return of a blank Rid on _multimesh_get_buffer_rd_rid.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Move `_scene_particles_set_view_axis` to new static function to allow call to be done on render thread, preventing multi threaded error on compute shader execution.
|
| |/ / /
| | | |
| | | |
| | | | |
calling on render thread.
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Fix updating lightmap captures on Mobile
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Normalize normal, tangent, and binormal before interpolating in the mobile renderer to avoid precision errors on heavily scaled meshes
|
| | |/
| |/|
| | |
| | | |
renderer to avoid precision errors on heavily scaled meshes
|
|\ \ \
| | | |
| | | |
| | | | |
Give the barrier pool its own mutex to avoid a deadlock with transfer workers.
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | |
| | | | |
Improve graph's detection of intersection between draw lists.
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | | |
Fix inability to set TextureLayeredRD as `TEXTURE_TYPE_CUBE` or `TEXTURE_TYPE_CUBE_ARRAY`
|
| |/ /
| | |
| | |
| | | |
TEXTURE_TYPE_CUBE_ARRAY
|
|\ \ \
| | | |
| | | |
| | | | |
Add prefix to struct member names in shader compiler
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | |
| | | | |
Expose RenderingServer methods to get rendering driver and method name
|
| | | |
| | | |
| | | |
| | | | |
This is useful for troubleshooting purposes and debug menus.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add renderer state defines to shader preprocessor
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Force `RDD::id` to be always `uint64_t`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
On Vulkan, some handles are meant to always be u64, even on 32-bit
architectures such as arm32.
Fixes #98654
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Precompute projection matrices when rendering 2D shadows
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Remove playback fade-in and add comments to `AudioServer`
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Co-authored-by: Ellen Poe <ellen@ellenhp.me>
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Fix Frustum Sky projection translation logic shearing
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Style: Apply `clang-tidy` fixes
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
• `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
|
| | |_|_|_|_|_|/ /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
• `modernize-use-default-member-init` and `readability-redundant-member-init`
• Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Fix splash screen upside down on Android
|
| | |_|_|_|/ / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Fixes an issue introduced in #96439 (see
https://github.com/godotengine/godot/pull/96439#issuecomment-2447288702)
Godot was relying on Java's
activity.getWindowManager().getDefaultDisplay().getRotation(); to apply
pre-rotation but this is wrong.
First, getRotation() may temporarily return a different value from the
correct one; which is what was causing the splash screen to be upside
down. It would return -90 instead of 90 for the first rendered frame.
But unfortunately, the splash screen is just one frame rendered for a
very long time, so the error lingered for a long time for everyone to
see.
Second, to determine what rotation to use, we should be looking at what
Vulkan told us, which is the value we pass to
VkSurfaceTransformFlagBitsKHR::preTransform.
This commit removes the now-unnecessary
screen_get_internal_current_rotation() function (which was introduced by
#96439) and now saves the preTransform value in the swapchain.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Add dependency detection improvements to the render graph.
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Buffers changing their usage are no longer treated as write usage unless the API requires it.
- Draw lists are not treated as being dependent on each other if their regions do not intersect despite both being write commands.
- Particles were tweaked to use different unused buffers to reduce dependencies.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Add multiple specialization constants to Forward+ and Mobile.
|
| |/ / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | |
| | | | | | | | | |
Add support for external camera feed from external plugin on Android
|
| | |/ / / / / /
| |/| | | | | | |
|
| |/ / / / / /
|/| | | | | |
| | | | | | |
| | | | | | | |
and `options`
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Add draw indirect to Rendering Device
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
2D: Fix various issues and minor performance optimisations
|