summaryrefslogtreecommitdiffstats
path: root/servers
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #99448 from clayjohn/RD-sky-flipRémi Verschelde2024-11-205-94/+70
|\ | | | | | | Unify y-flip behavior for sky in RD backends
| * Unify y-flip behavior for sky in RD backendsclayjohn2024-11-195-94/+70
| |
* | Improve dependency detection in render graph for draw lists with partial ↵Dario2024-11-193-18/+39
|/ | | | coverage.
* 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 #85359 from miv391/faster-exit-from-cull_canvas_itemThaddeus Crews2024-11-181-13/+13
|\ \ | | | | | | | | | Faster exit from `_cull_canvas_item` if alpha is zero
| * | Faster exit from _cull_canvas_item if alpha is zeroMika Viskari2024-11-161-13/+13
| | |
* | | Merge pull request #98788 from Bonkahe/masterThaddeus Crews2024-11-188-0/+17
|\ \ \ | | | | | | | | | | | | Add `multimesh_get_buffer_rd_rid` method to `RenderingServer`.
| * | | Implemented multimesh_get_buffer_rd_rid function into RenderingServer.David House2024-11-148-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | 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 #99299 from Bonkahe/ResolveParticlesSetViewAxisThreadIssueThaddeus Crews2024-11-182-1/+8
|\ \ \ \ | | | | | | | | | | | | | | | 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.
| * | | | Created static method and moved _particles_set_view_axis over to it to allow ↵David House2024-11-162-1/+8
| |/ / / | | | | | | | | | | | | calling on render thread.
* | | | 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
| | | |
* | | | Merge pull request #99163 from clayjohn/Mobile-normal-interpThaddeus Crews2024-11-141-7/+7
|\ \ \ \ | |/ / / |/| | | | | | | Normalize normal, tangent, and binormal before interpolating in the mobile renderer to avoid precision errors on heavily scaled meshes
| * | | Normalize normal tangent and binormal before interpolating in the mobile ↵clayjohn2024-11-131-7/+7
| | |/ | |/| | | | | | | renderer to avoid precision errors on heavily scaled meshes
* | | Merge pull request #99066 from DarioSamo/rd-transfer-worker-deadlock-fixThaddeus Crews2024-11-132-5/+10
|\ \ \ | | | | | | | | | | | | Give the barrier pool its own mutex to avoid a deadlock with transfer workers.
| * | | Give the barrier pool its own mutex to avoid a deadlock with transfer workers.Dario2024-11-112-5/+10
| | | |
* | | | Merge pull request #99073 from DarioSamo/rd-graph-dependency-fixThaddeus Crews2024-11-132-10/+11
|\ \ \ \ | |_|/ / |/| | | | | | | Improve graph's detection of intersection between draw lists.
| * | | Improve graph's detection of intersection between draw lists.Dario2024-11-112-10/+11
| |/ /
* | | Merge pull request #98767 from jadeharley2/masterThaddeus Crews2024-11-111-1/+3
|\ \ \ | | | | | | | | | | | | Fix inability to set TextureLayeredRD as `TEXTURE_TYPE_CUBE` or `TEXTURE_TYPE_CUBE_ARRAY`
| * | | Fix inability to set TextureLayeredRD as TEXTURE_TYPE_CUBE or ↵jadeharley22024-11-111-1/+3
| |/ / | | | | | | | | | TEXTURE_TYPE_CUBE_ARRAY
* | | Merge pull request #98755 from Chaosus/shader_compiler_fix_struct_member_namesThaddeus Crews2024-11-111-2/+8
|\ \ \ | | | | | | | | | | | | Add prefix to struct member names in shader compiler
| * | | Add prefix to struct member names in shader compilerChaosus2024-11-021-2/+8
| | | |
* | | | Merge pull request #85430 from Calinou/os-expose-rendering-driver-methodThaddeus Crews2024-11-112-0/+16
|\ \ \ \ | |_|/ / |/| | | | | | | Expose RenderingServer methods to get rendering driver and method name
| * | | Expose RenderingServer methods to get rendering driver and method nameHugo Locurcio2024-10-022-0/+16
| | | | | | | | | | | | | | | | This is useful for troubleshooting purposes and debug menus.
* | | | Merge pull request #98549 from Chaosus/shader_renderer_statesThaddeus Crews2024-11-102-0/+35
|\ \ \ \ | | | | | | | | | | | | | | | Add renderer state defines to shader preprocessor
| * | | | Add renderer state defines to shader preprocessorChaosus2024-10-262-0/+35
| | | | |
* | | | | Merge pull request #98910 from darksylinc/matias-id_arm32Thaddeus Crews2024-11-101-6/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Force `RDD::id` to be always `uint64_t`
| * | | | | Force RID::id to be always uint64_tMatias N. Goldberg2024-11-061-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Vulkan, some handles are meant to always be u64, even on 32-bit architectures such as arm32. Fixes #98654
* | | | | | 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 #98131 from KeyboardDanni/remove_playback_fadeinThaddeus Crews2024-11-052-27/+54
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove playback fade-in and add comments to `AudioServer`
| * | | | | | | Add some more comments to AudioServer and remove playback fade-inDanni2024-11-052-27/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Ellen Poe <ellen@ellenhp.me>
* | | | | | | | Merge pull request #86138 from EnlightenedOne/masterThaddeus Crews2024-11-047-11/+30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Frustum Sky projection translation logic shearing
| * | | | | | | | Fix Frustum Sky projection translation logic, all pipelines, fixes 63863EnlightenedOne2024-11-027-11/+30
| | | | | | | | |
* | | | | | | | | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-047-9/+10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Style: Apply `clang-tidy` fixes
| * | | | | | | | | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-045-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
| * | | | | | | | | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-042-4/+4
| | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `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-045-9/+15
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix splash screen upside down on Android
| * | | | | | | | | Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-315-9/+15
| | |_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-049-35/+77
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add dependency detection improvements to the render graph.
| * | | | | | | | | Add dependency detection improvements to the render graph.Dario2024-11-019-35/+77
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | | | | | | Merge pull request #98825 from DarioSamo/mobile-scsThaddeus Crews2024-11-0410-275/+260
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add multiple specialization constants to Forward+ and Mobile.
| * | | | | | | | | Add multiple specialization constants to Forward+ and Mobile.Dario2024-11-0410-275/+260
| |/ / / / / / / /
* | | | | | | | | Merge pull request #96705 from elmajime/camera_from_external_feedThaddeus Crews2024-11-0411-10/+52
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | Add support for external camera feed from external plugin on Android
| * | | | | | | | Added external camera feed from external plugin on Androidmaxime.chambefort2024-10-3011-10/+52
| | |/ / / / / / | |/| | | | | |
* | | | | | | | [DisplayServer] Add feature flag for native file dialog access to `user/res` ↵Anish Mishra2024-10-302-0/+2
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | and `options`
* | | | | | | Merge pull request #97247 from thimenesup/draw_indirect_rdThaddeus Crews2024-10-294-0/+171
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add draw indirect to Rendering Device
| * | | | | | | Add draw indirect to Rendering Devicethimenesup2024-10-294-0/+171
| | | | | | | |
* | | | | | | | Merge pull request #98652 from stuartcarnie/2d_texture_state_fixesThaddeus Crews2024-10-296-145/+330
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 2D: Fix various issues and minor performance optimisations