summaryrefslogtreecommitdiffstats
path: root/servers/rendering/renderer_rd
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #99220 from Flarkk/fix_sss_reverse_zThaddeus Crews2024-11-271-2/+2
|\ | | | | | | Fix regression in SSS with reverse-z
| * Fix SSS with reverse-zFlorent Guiocheau2024-11-261-2/+2
| |
* | Merge pull request #99548 from Repiteo/style/clang-format-19-optionsThaddeus Crews2024-11-223-3/+0
|\ \ | | | | | | | | | Style: Add 19.1.0 LLVM options to `.clang-format`
| * | Style: Add 19.1.0 LLVM options to `.clang-format`Thaddeus Crews2024-11-223-3/+0
| | |
* | | Mask out shadows on CanvasItems that don't have a matching item_shadow_maskclayjohn2024-11-214-97/+106
|/ / | | | | | | This restores the behavior from 3.x
* | Merge pull request #94981 from Chaosus/shader_fix_screen_uv_in_spatial_lightThaddeus Crews2024-11-213-11/+11
|\ \ | | | | | | | | | Allow `SCREEN_UV` to be used in light function of spatial shader
| * | Allow `SCREEN_UV` to be used in light function of spatial shaderChaosus2024-11-193-11/+11
| | |
* | | Unify y-flip behavior for sky in RD backendsclayjohn2024-11-195-94/+70
|/ /
* | Merge pull request #98683 from clayjohn/wireframeThaddeus Crews2024-11-182-2/+2
|\ \ | | | | | | | | | Ensure shadow material and mesh are not used with wireframe mode
| * | Ensure shadow material and mesh are not used with wireframe modeclayjohn2024-11-162-2/+2
| | | | | | | | | | | | And in the Compatibility renderer actually use the wireframe render mode
* | | Merge pull request #98788 from Bonkahe/masterThaddeus Crews2024-11-182-0/+7
|\ \ \ | | | | | | | | | | | | Add `multimesh_get_buffer_rd_rid` method to `RenderingServer`.
| * | | Implemented multimesh_get_buffer_rd_rid function into RenderingServer.David House2024-11-142-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge pull request #99367 from BlueCube3310/mobile-probe-captureThaddeus Crews2024-11-181-0/+4
|\ \ \ \ | |/ / / |/| | | | | | | Fix updating lightmap captures on Mobile
| * | | Fix updating lightmap captures on MobileBlueCube33102024-11-171-0/+4
| |/ /
* / / Normalize normal tangent and binormal before interpolating in the mobile ↵clayjohn2024-11-131-7/+7
|/ / | | | | | | renderer to avoid precision errors on heavily scaled meshes
* | Fix inability to set TextureLayeredRD as TEXTURE_TYPE_CUBE or ↵jadeharley22024-11-111-1/+3
| | | | | | | | TEXTURE_TYPE_CUBE_ARRAY
* | Merge pull request #98307 from clayjohn/Light2D-shadow-projectionThaddeus Crews2024-11-101-20/+27
|\ \ | | | | | | | | | Precompute projection matrices when rendering 2D shadows
| * | Precompute projection matrices when rendering 2D shadowsclayjohn2024-10-181-20/+27
| | |
* | | Merge pull request #86138 from EnlightenedOne/masterThaddeus Crews2024-11-044-2/+16
|\ \ \ | | | | | | | | | | | | Fix Frustum Sky projection translation logic shearing
| * | | Fix Frustum Sky projection translation logic, all pipelines, fixes 63863EnlightenedOne2024-11-024-2/+16
| | | |
* | | | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-043-5/+5
|\ \ \ \ | | | | | | | | | | | | | | | Style: Apply `clang-tidy` fixes
| * | | | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-042-2/+2
| | | | | | | | | | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
| * | | | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-default-member-init` and `readability-redundant-member-init` • Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies
* | | | | Merge pull request #98709 from darksylinc/matias-upsidedown-splashThaddeus Crews2024-11-041-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix splash screen upside down on Android
| * | | | | Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-311-2/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Merge pull request #98701 from DarioSamo/rd-graph-improvementsThaddeus Crews2024-11-045-26/+39
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Add dependency detection improvements to the render graph.
| * | | | | Add dependency detection improvements to the render graph.Dario2024-11-015-26/+39
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | - 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.Dario2024-11-0410-275/+260
|/ / / /
* | | | Merge pull request #98652 from stuartcarnie/2d_texture_state_fixesThaddeus Crews2024-10-295-145/+329
|\ \ \ \ | | | | | | | | | | | | | | | 2D: Fix various issues and minor performance optimisations
| * | | | 2D: Fix various issues and minor performance optimisationsStuart Carnie2024-10-305-145/+329
| | | | |
* | | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-2912-32/+32
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| * | | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-2512-32/+32
| | | | | | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | | | | Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-293-2/+34
|\ \ \ \ \ | | | | | | | | | | | | Add Swappy & Pre-Transformed Swapchain
| * | | | | Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-283-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | | | Fix soft shadows by increasing the bit count for specialization constants.Dario2024-10-285-27/+42
| |/ / / / |/| | | |
* | | | | Merge pull request #98448 from Chaosus/shader_global_builtinsYuri Rubinsky2024-10-252-4/+4
|\ \ \ \ \ | | | | | | | | | | | | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins global
| * | | | | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins globalChaosus2024-10-242-4/+4
| | |_|_|/ | |/| | |
* | | | | Merge pull request #85338 from EMBYRDEV/shadow-caster-maskThaddeus Crews2024-10-242-0/+20
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Add `shadow_caster_mask` to Light3D.
| * | | | | Add `shadow_caster_mask` to Light3D.Hannah Crawford2024-08-122-0/+20
| | | | | |
* | | | | | Merge pull request #86103 from ecmjohnson/fix-inside-volfogThaddeus Crews2024-10-241-26/+54
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | Fix volumetric fog artifacts when inside the fog
| * | | | | Fix volumetric fog artifacts when inside the fogErik Johnson2024-03-241-26/+54
| | | | | |
* | | | | | Merge pull request #98294 from Calinou/texture-placeholders-use-shared-copyThaddeus Crews2024-10-212-31/+35
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Use a shared copy of placeholder textures, tweak placeholder appearance
| * | | | | | Use a shared copy of placeholder textures, tweak placeholder appearanceHugo Locurcio2024-10-182-31/+35
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | Merge pull request #98258 from LainAmongYou/fix-bgraThaddeus Crews2024-10-211-0/+10
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Add support for BGRA textures with Texture*RD
| * | | | | | Add support for BGRA textures with Texture*RDLain2024-10-161-0/+10
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | This adds the ability to use BGRA textures created with RenderingDevice with classes such as Texture2DRD.
* | | | | | Merge pull request #98237 from dustdfg/os_transitive_image_headers_refactorThaddeus Crews2024-10-212-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Don't include `core/io/image.h` in `core/os/os.h`
| * | | | | | Don't include `core/io/image.h` in `core/os/os.h`Yevhen Babiichuk (DustDFG)2024-10-182-0/+2
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `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>
* | | | | | Merge pull request #98226 from m-pranav-r/fix-volumetric-shadowsThaddeus Crews2024-10-211-0/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | Fix incorrect depth comparison used to calculate volumetric fog shadowing
| * | | | | Fix incorrect depth comparison used to calculate volumetric fog shadowingm-pranav-r2024-10-161-0/+1
| |/ / / /
* / / / / Move preprocessor to end of line for iterator, remove redeclaration ↵EnlightenedOne2024-10-141-5/+1
|/ / / / | | | | | | | | | | | | incompatible with ubershader method definitions