summaryrefslogtreecommitdiffstats
path: root/drivers
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | Merge pull request #98307 from clayjohn/Light2D-shadow-projectionThaddeus Crews2024-11-101-17/+28
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | Precompute projection matrices when rendering 2D shadows
| | * | | | | | Precompute projection matrices when rendering 2D shadowsclayjohn2024-10-181-17/+28
| | | | | | | |
| * | | | | | | Account for the case surface_capabilities.currentExtent is unsetTrevor Davenport2024-11-052-8/+14
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wayland in particular sets surface_capabilities.currentExtent.width to the special value 0xFFFFFFFF, which is valid per spec. Fixes #98779 It may also fix misc issues when resizing on all platforms. Superseedes PR #98780 , thanks to user tdaven for the original patch. PR #98780 would break Android support as it did not account that width and height might need to be swapped. Replaced manual swap by Godot's SWAP(), which indicates intention much easier.
* | | | | | | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-0617-28/+337
|\| | | | | |
| * | | | | | Merge pull request #86138 from EnlightenedOne/masterThaddeus Crews2024-11-042-1/+7
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix Frustum Sky projection translation logic shearing
| | * | | | | | Fix Frustum Sky projection translation logic, all pipelines, fixes 63863EnlightenedOne2024-11-022-1/+7
| | | | | | | |
| * | | | | | | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-047-18/+18
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Style: Apply `clang-tidy` fixes
| | * | | | | | | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-046-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
| | * | | | | | | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-042-2/+2
| | | |_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | • `modernize-use-default-member-init` and `readability-redundant-member-init` • Minor adjustments to `.clang-tidy` to improve syntax & remove redundancies
| * | | | | | | Merge pull request #98774 from dustdfg/scons_use_glob_remove_stale_checkThaddeus Crews2024-11-041-8/+8
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Delete stale check, make SCons support globbing with `#` inside path
| | * | | | | | | Deleted stale check. Now SCons supports globbing with `#` inside pathYevhen Babiichuk (DustDFG)2024-11-021-8/+8
| | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some parts of the buildsystem already were using it with `#` in path Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
| * | | | | | | Merge pull request #98709 from darksylinc/matias-upsidedown-splashThaddeus Crews2024-11-042-0/+27
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix splash screen upside down on Android
| | * | | | | | | Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-312-0/+27
| | | |_|_|_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-041-0/+2
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Add dependency detection improvements to the render graph.
| | * | | | | | | Add dependency detection improvements to the render graph.Dario2024-11-011-0/+2
| | | |/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 #96705 from elmajime/camera_from_external_feedThaddeus Crews2024-11-047-1/+271
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | Add support for external camera feed from external plugin on Android
| | * | | | | | Added external camera feed from external plugin on Androidmaxime.chambefort2024-10-307-1/+271
| | | |/ / / / | | |/| | | |
* | | | | | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-024-19/+41
|\| | | | | |
| * | | | | | Revert "Fix GPUParticles are not rendered for older AMD GPUs with OpenGL+Angle"clayjohn2024-10-294-19/+41
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 9cc9df52eb6ef32b80bd3bd725807fea70b00a89. This also adds a fallback to avoid using the Godot versions of the half 2 float functions when using ANGLE.
* | | | | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-3018-70/+257
|\| | | | |
| * | | | | Merge pull request #88628 from bruvzg/i_have_no_idea_what_im_doingThaddeus Crews2024-10-294-16/+63
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [macOS/iOS] Use hardware sampling rates for audio I/O.
| | * | | | | [macOS/iOS] Use hardware sampling rates for audio I/O.bruvzg2024-10-254-16/+63
| | | | | | |
| * | | | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-2913-40/+40
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| | * | | | | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-2513-40/+40
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
| * | | | | | Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-292-9/+153
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Add Swappy & Pre-Transformed Swapchain
| | * | | | | | Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-282-9/+153
| | | |_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
| * | | | | | Merge pull request #98279 from Calinou/vulkan-d3d12-silence-using-present-modeClay John2024-10-272-5/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Remove "Using present mode" verbose prints in Vulkan and Direct3D 12
| | * | | | | | Remove "Using present mode" verbose prints in Vulkan and Direct3D 12Hugo Locurcio2024-10-172-5/+1
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These messages were printed every time the swapchain was recreated (e.g. on viewport size change), which could easily end up spamming the output. The chosen present mode is already displayed when using the Print FPS project setting or command line argument.
* | | | | | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-27110-220/+220
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix copyright headers referring to Godot
| * | | | | | | Fix copyright headers referring to GodotSpartan3222024-10-27110-220/+220
| | | | | | | |
* | | | | | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-266-60/+212
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| / / / / / / | |/ / / / / /
| * | | | | | Merge pull request #98425 from darksylinc/matias-breadcrumbs-race-fixThaddeus Crews2024-10-252-57/+183
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix race conditions in breadcrumbs
| | * | | | | | Fix race conditions in breadcrumbsMatias N. Goldberg2024-10-222-57/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds "--accurate-breadcrumbs" CLI command Additionally, leave out breadcrumbs code in non-debug, non-dev builds. Fix regression introduced in #98388 where command_insert_breadcrumb() is called even in non-debug builds. Fixes #98338
| * | | | | | | Merge pull request #97771 from dsnopek/openxr-linux-eglThaddeus Crews2024-10-252-0/+26
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | OpenXR: Add support for Wayland on Linux
| | * | | | | | OpenXR: Add support for Wayland on LinuxDavid Snopek2024-10-042-0/+26
| | | | | | | |
| * | | | | | | Merge pull request #98448 from Chaosus/shader_global_builtinsYuri Rubinsky2024-10-251-2/+2
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins global
| | * | | | | | | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins globalChaosus2024-10-241-2/+2
| | | |/ / / / / | | |/| | | | |
| * | | | | | | Merge pull request #98305 from cadence-s/fix-ios-audio-driver-errorClay John2024-10-241-1/+1
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix iOS audio driver attempting to start output too early
| | * | | | | | | Fix iOS audio driver attempting to start output too earlyCadence2024-10-181-1/+1
| | | |_|/ / / / | | |/| | | | |
* | | | | | | | Merge commit godotengine/godot@1015a481ff43edb1126ab39a147fefda290131e5Spartan3222024-10-242-0/+20
|\| | | | | | |
| * | | | | | | 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 commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-228-82/+228
|\| | | | | |
| * | | | | | Merge pull request #98294 from Calinou/texture-placeholders-use-shared-copyThaddeus Crews2024-10-212-32/+36
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Use a shared copy of placeholder textures, tweak placeholder appearance
| | * | | | | | Use a shared copy of placeholder textures, tweak placeholder appearanceHugo Locurcio2024-10-182-32/+36
| | | |/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #98388 from DarioSamo/sync-fixesThaddeus Crews2024-10-212-7/+44
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Improve synchronization of rendering after changes from transfer queues.
| | * | | | | | Improve synchronization of rendering commands after changes from transfer ↵Dario2024-10-212-7/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | queues. Fix an error where barriers are expected to be inserted for the swap chain textures. Add the relevant synchronization stages and accesses to resources between frames. Fix an error where debug labels weren't finished correctly between frames. Breadcrumbs are now behind an optional macro as they currently lead to synchronization errors which are harmless.
| * | | | | | | 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 #98212 from stuartcarnie/sgc/metal_improvementsThaddeus Crews2024-10-213-43/+146
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | | | | | | | | | Metal: Performance improvements and bug fixes