| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| | |
Fix regression in SSS with reverse-z
|
| | |
|
|\ \
| | |
| | |
| | | |
Style: Add 19.1.0 LLVM options to `.clang-format`
|
| | | |
|
|/ /
| |
| |
| | |
This restores the behavior from 3.x
|
|\ \
| | |
| | |
| | | |
Allow `SCREEN_UV` to be used in light function of spatial shader
|
| | | |
|
|/ / |
|
|\ \
| | |
| | |
| | | |
Ensure shadow material and mesh are not used with wireframe mode
|
| | |
| | |
| | |
| | | |
And in the Compatibility renderer actually use the wireframe render mode
|
|\ \ \
| | | |
| | | |
| | | | |
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.
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Fix updating lightmap captures on Mobile
|
| |/ / |
|
|/ /
| |
| |
| | |
renderer to avoid precision errors on heavily scaled meshes
|
| |
| |
| |
| | |
TEXTURE_TYPE_CUBE_ARRAY
|
|\ \
| | |
| | |
| | | |
Precompute projection matrices when rendering 2D shadows
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
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.
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
2D: Fix various issues and minor performance optimisations
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
|
| | | | |
| | | | |
| | | | |
| | | | | |
- Set clang-format `Standard` rule to `c++20`
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add Swappy & Pre-Transformed Swapchain
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Adds Swappy for Android for stable frame pacing
- Implements pre-transformed Swapchain so that Godot's compositor is in
charge of rotating the screen instead of Android's compositor
(performance optimization for phones that don't have HW rotator)
============================
The work was performed by collaboration of TheForge and Google. I am
merely splitting it up into smaller PRs and cleaning it up.
Changes from original PR:
- Removed "display/window/frame_pacing/android/target_frame_rate" option
to use Engine::get_max_fps instead.
- Target framerate can be changed at runtime using Engine::set_max_fps.
- Swappy is enabled by default.
- Added documentation.
- enable_auto_swap setting is replaced with swappy_mode.
|
| |/ / / /
|/| | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins global
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Add `shadow_caster_mask` to Light3D.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | |
| | | | | | |
Fix volumetric fog artifacts when inside the fog
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Use a shared copy of placeholder textures, tweak placeholder appearance
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This reduces memory usage a bit in case multiple placeholders were
requested, e.g. when using multiple NoiseTextures with no noise property
defined.
The placeholder texture's appearance was also changed from a plain magenta
color to a checkerboard alternating between magenta and black pixels.
This makes it easier to spot when the placeholder texture ends up
being used in a complex scene (usually by accident).
The texture's dimensions remain identical to keep the physical size
identical in 2D.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Add support for BGRA textures with Texture*RD
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This adds the ability to use BGRA textures created with RenderingDevice
with classes such as Texture2DRD.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Don't include `core/io/image.h` in `core/os/os.h`
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
`core/os/os.h` doesn't use `core/io/image.h`. It just brings
transitive dependencies. Lots of dependencies because `core/os/os.h`
is transitively included in almost every file of godot
Also added `core/io/image.h` into files^1 where `Ref<Image>` and `core/os/os.h`
were used to prevent obscure errors involving `Ref<Image>`
^1 except those which include `core/io/image_loader.h` or `core/io/image.h` by
corresponding .h file with the same name
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | |
| | | | | | |
Fix incorrect depth comparison used to calculate volumetric fog shadowing
|
| |/ / / / |
|
|/ / / /
| | | |
| | | |
| | | | |
incompatible with ubershader method definitions
|