summaryrefslogtreecommitdiffstats
path: root/servers
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #97483 from akien-mga/clang-format-19.1.0Rémi Verschelde2024-09-263-3/+3
|\ | | | | | | CI: Update `clang-format` pre-commit hook to 19.1.0
| * CI: Update `clang-format` pre-commit hook to 19.1.0Rémi Verschelde2024-09-263-3/+3
| |
* | Merge pull request #97481 from Chaosus/shader_fix_void_returnRémi Verschelde2024-09-261-0/+5
|\ \ | | | | | | | | | Fix shader crash when return a void function call
| * | Fix shader crash when return a void function callChaosus2024-09-261-0/+5
| |/
* | Merge pull request #97428 from clayjohn/shadow-filter-jitter-rebaseRémi Verschelde2024-09-2610-47/+54
|\ \ | | | | | | | | | Jitter shadow map dithering pattern across frames when TAA is enabled
| * | Jitter shadow map dithering pattern across frames when TAA is enabledHugo Locurcio2024-09-2410-47/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This improves shadow quality by reducing the visibility of the noisy pattern caused by dithering. This jittering also applies when FSR2 is enabled, as it provides its own form of temporal antialiasing. Co-authored-by: Clay John <claynjohn@gmail.com>
* | | Merge pull request #96923 from Repiteo/style/warning-admonitionRémi Verschelde2024-09-262-5/+9
|\ \ \ | | | | | | | | | | | | Style: Add `WARNING:` as new comment admonition
| * | | Style: Add `WARNING:` as new comment admonitionThaddeus Crews2024-09-252-5/+9
| | |/ | |/|
* / | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-2528-0/+28
|/ /
* | Merge pull request #93786 from alvinhochun/viewport-pixel-snap-fixRémi Verschelde2024-09-251-0/+17
|\ \ | | | | | | | | | Apply "snap 2D transforms to pixel" to viewport
| * | Apply snap 2D transforms to pixel to viewportAlvin Wong2024-09-231-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We shall not leave the viewport transform to be rounded by the code for rounding canvas items. Since the viewport transform is inverse to the camera transform, we get incorrect rounding at the halfway point that misaligns the viewport and the canvas item which the camera is following. Instead, reintroduce viewport rounding, but do it in a way that matches the rounding of canvas items. Also take into account the half-pixel offset of the centre point when viewport dimension is not divisible by two. For `CanvasLayer`s that follows viewport, take into account the scale when rounding. Overall this should work better compared to the rounding in Godot 4.2 (and earlier).
* | | Merge pull request #93324 from tracefree/reinhard-fixRémi Verschelde2024-09-251-2/+6
|\ \ \ | | | | | | | | | | | | Fix incorrect Reinhard tonemap operator
| * | | Fix incorrect Reinhard tonemap operatorRie2024-09-251-2/+6
| | | |
* | | | Add linux camera supportPaweł2024-09-252-4/+44
|/ / /
* / / Move Godot Physics 2D into a module; add dummy 2D physics serverRicardo Buring2024-09-2336-11447/+357
|/ / | | | | | | | | | | | | | | | | | | | | | | If the module is enabled (default), 2D physics works as it did before. If the module is disabled and no other 2D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 2D physics functionality (and a warning is printed). The dummy 2D physics server can also be selected explicitly, in which case no warning is printed.
* | Merge pull request #95252 from rburing/3d_physics_moduleRémi Verschelde2024-09-2351-20520/+443
|\ \ | |/ |/| | | Move Godot Physics 3D into a module; add dummy 3D physics server
| * Move Godot Physics 3D into a module; add dummy 3D physics serverRicardo Buring2024-09-2151-20520/+443
| | | | | | | | | | | | | | | | | | | | | | | | If the module is enabled (default), 3D physics works as it did before. If the module is disabled and no other 3D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 3D physics functionality (and a warning is printed). The dummy 3D physics server can also be selected explicitly, in which case no warning is printed.
* | Fix hash calculation for NTSliceKeyJiang Yiheng2024-09-221-1/+1
|/ | | | | A bug was introduced from 057367bf by adding FSR 2.2.1 support. Which increases hash collision and hurts performance.
* Merge pull request #97260 from clayjohn/pixel_snapRémi Verschelde2024-09-211-2/+2
|\ | | | | | | Calculate pixel snap in canvas space instead of world space
| * Calculate pixel snap in canvas space instead of world spaceclayjohn2024-09-201-2/+2
| | | | | | | | This ensures that you are actually snapping to pixels in the viewport and not an arbitrary amount
* | Add external texture support (GLES3)David Snopek2024-09-2012-2/+60
|/ | | | | Co-authored-by: Fredia Huya-Kouadio <fhuyakou@gmail.com> Co-authored-by: Mauricio Narvaez <nvz@meta.com>
* Merge pull request #97217 from stuartcarnie/97185_subpixel_renderingRémi Verschelde2024-09-201-0/+5
|\ | | | | | | Metal: Fix subpixel blending; fix inconsistent blend state
| * [2D,Metal]: Fix subpixel blending; fix inconsistent blend state in MetalStuart Carnie2024-09-201-0/+5
| |
* | Style: Apply new `clang-format` changesThaddeus Crews2024-09-2020-72/+76
|/
* Merge pull request #96928 from dsnopek/rename-and-expose-texture-create-externalRémi Verschelde2024-09-197-0/+214
|\ | | | | | | Expose a function to create textures from a native handle in the compatibility renderer
| * Expose a function to create textures from a native handle in the ↵David Snopek2024-09-197-0/+214
| | | | | | | | compatibility renderer
* | Merge pull request #97130 from ↵Rémi Verschelde2024-09-181-1/+1
|\ \ | | | | | | | | | | | | | | | Rindbee/check-space-in-remove_soft_body_from_query Add forgotten `get_space()` check in `GodotArea3D::remove_soft_body_from_query()`
| * | Add forgotten `get_space()` check in ↵风青山2024-09-181-1/+1
| | | | | | | | | | | | | | | | | | | | | `GodotArea3D::remove_soft_body_from_query()` My fault, I added a `get_space()` check for the other `GodotArea3D::remove_*_from_query()` but forgot about `soft_body`.
* | | Merge pull request #97006 from Gaktan/project_dialog_vulkan_crashRémi Verschelde2024-09-181-0/+5
|\ \ \ | |/ / |/| | | | | Fix Vulkan Instance initialized twice in ProjectDialog
| * | Fix Vulkan Instance initialized twice in ProjectDialogGaktan2024-09-171-0/+5
| | |
* | | Merge pull request #97109 from pattlebass/pitch-shift-fixRémi Verschelde2024-09-171-0/+5
|\ \ \ | |/ / |/| | | | | AudioEffectPitchShift: Fix distortion when pitch is 1.0
| * | AudioEffectPitchShift: Fix distortion when pitch is 1.0Fabian S.2024-09-171-0/+5
| | |
* | | 2D: Remove redundant assignmentStuart Carnie2024-09-171-4/+4
|/ /
* | Merge pull request #95915 from BlueCube3310/betsy-bc1Rémi Verschelde2024-09-161-0/+1
|\ \ | | | | | | | | | Betsy: Add caching and BC1 compression support
| * | Betsy: Add caching and BC1 compression supportBlueCube33102024-09-111-0/+1
| | |
* | | Merge pull request #92290 from clayjohn/LOD-fixesRémi Verschelde2024-09-162-53/+28
|\ \ \ | | | | | | | | | | | | Use distance to AABB surface to calculate Mesh LOD instead of using supports
| * | | Use distance to AABB surface to calculate Mesh LOD instead of using supportsclayjohn2024-09-112-53/+28
| | | |
* | | | 2D: Fix use-after-free in batch renderingStuart Carnie2024-09-142-92/+91
| | | | | | | | | | | | | | | | | | | | Closes #96960 Fixes regression of #95574 using fix from #95666
* | | | Fix broken sky shaderChaosus2024-09-132-18/+25
| |_|/ |/| |
* | | Merge pull request #96875 from stuartcarnie/sgc/small_optimisationsRémi Verschelde2024-09-124-18/+17
|\ \ \ | | | | | | | | | | | | [Editor, Servers] Minor optimizations
| * | | [Editor,Servers]: Minor optimizationsStuart Carnie2024-09-124-18/+17
| |/ /
* | | Merge pull request #95473 from Chaosus/shader_fix_switch_bugsRémi Verschelde2024-09-122-55/+71
|\ \ \ | |_|/ |/| | | | | Fix shader incorrectly expects `int` on `uint` and vice-versa in cases
| * | Fix shader incorrectly expects `int` on `uint` and vice-versa in casesChaosus2024-09-112-55/+71
| | |
* | | 2D: Add batching to RendererCanvasRenderRDStuart Carnie2024-09-125-903/+1282
| |/ |/|
* | Merge pull request #96858 from Chaosus/shader_fix_conditional_opRémi Verschelde2024-09-112-16/+16
|\ \ | | | | | | | | | Fix shader crash when using unary minus in expression
| * | Fix shader crash when using unary minus in expressionChaosus2024-09-112-16/+16
| |/
* / Fix typo in XRInterface commentTypeChecked2024-09-111-1/+1
|/
* Merge pull request #96092 from smix8/region_point_queryRémi Verschelde2024-09-106-0/+12
|\ | | | | | | Add navigation region point and segment queries
| * Add navigation region point and segment queriessmix82024-09-106-0/+12
| | | | | | | | Adds point and segment queries for regions, e.g. closet point, point normal, or segment intersection.
* | Merge pull request #94893 from rune-scape/no-const-cast-mesh-storageRémi Verschelde2024-09-105-7/+7
|\ \ | |/ |/| | | Avoid `const_cast` in `mesh_storage.h`