summaryrefslogtreecommitdiffstats
path: root/drivers/vulkan
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@9e6098432aac35bae42c9089a29ba2a80320d823Spartan3222024-11-201-1/+3
|\
| * Fix: Error output is not require, `VK_QUEUE_TRANSFER_BIT` is optional.Alexander Hartmann2024-11-191-1/+3
| |
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-4/+1
|\|
| * Merge pull request #99149 from mrsaturnsan/set_max_fps_fixThaddeus Crews2024-11-131-4/+1
| |\ | | | | | | | | | Fix max FPS initialization
| | * Fix max FPS initializationmrsaturnsan2024-11-121-4/+1
| | | | | | | | | | | | Remove unnecessary get_max_fps
* | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-112-9/+36
|\| |
| * | Merge pull request #98883 from ducklin5/fix/VkResultErrorThaddeus Crews2024-11-102-1/+22
| |\ \ | | | | | | | | | | | | Add vulkan error checks in command_queue_execute_and_present
| | * | fix: add vulkan error checks in command_queue_execute_and_presentAzeez Abass2024-11-062-1/+22
| | | | | | | | | | | | | | | | fix: add debug helper functoin and update messaging vulkan result
| * | | 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-062-4/+31
|\| |
| * | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-042-4/+4
| |\ \ | | | | | | | | | | | | Style: Apply `clang-tidy` fixes
| | * | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-2/+2
| | | | | | | | | | | | | | | | • `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
| * / 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 commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-302-12/+154
|\|
| * 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-271-3/+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-171-3/+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-277-14/+14
|\ \ \ | | | | | | | | Fix copyright headers referring to Godot
| * | | Fix copyright headers referring to GodotSpartan3222024-10-277-14/+14
| | | |
* | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-262-57/+183
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | 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 commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-222-7/+44
|\| |
| * | 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 commit godotengine/godot@80f0b33313dae52d072ba2771a88ebcc4f0b4d6dSpartan3222024-10-181-0/+1
|\| |
| * | Move transitions of textures initialized by transfer workers to the main ↵Dario2024-10-181-0/+1
| |/ | | | | | | | | | | graphics queue. Also adds a new possible texture layout and API trait to support a particular behavior in D3D12 where only the COMMON layout is supported in copy queues. Fixes #98158.
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-117-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-112-6/+6
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Implement asynchronous transfer queues, thread guards on RenderingDevice. ↵Dario2024-10-022-5/+1
| | | | | | | | | | | Add ubershaders and rework pipeline caches for Forward+ and Mobile. - Implements asynchronous transfer queues from PR #87590. - Adds ubershaders that can run with specialization constants specified as push constants. - Pipelines with specialization constants can compile in the background. - Added monitoring for pipeline compilations. - Materials and shaders can now be created asynchronously on background threads. - Meshes that are loaded on background threads can also compile pipelines as part of the loading process.
* Move Vulkan includes to a central godot_vulkan.h headerGergely Kis2024-09-294-15/+45
| | | | Also fixes Vulkan build problem with recent Clang.
* Merge pull request #97483 from akien-mga/clang-format-19.1.0Rémi Verschelde2024-09-261-2/+2
|\ | | | | | | 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-261-2/+2
| |
* | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|/
* Vulkan: account for externally backed textures (i.e., created via ↵Sander2024-09-122-4/+8
| | | | | | `texture_create_from_extension()`), as such textures lack ownership information. More info: #96832
* Merge pull request #96045 from darksylinc/matias-TheForge-pr02Rémi Verschelde2024-09-021-0/+11
|\ | | | | | | Add `VK_EXT_astc_decode_mode` support
| * Add VK_EXT_astc_decode_mode supportMatias N. Goldberg2024-08-241-0/+11
| | | | | | | | | | The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up.
* | Disable extra memory tracking by defaultMatias N. Goldberg2024-08-243-3/+17
|/ | | | | | | | | | | | | | | | | | | | | | | | | PR #90993 added several debugging utilities. Among them, advanced memory tracking through the use of custom allocators and VK_EXT_device_memory_report. However as issue #95967 reveals, it is dangerous to leave it on by default because drivers (or even the Vulkan loader) can too easily accidentally break custom allocators by allocating memory through std malloc but then request us to deallocate it (or viceversa). This PR fixes the following problems: - Adds --extra-gpu-memory-tracking cmd line argument - Adds missing enum entries to RenderingContextDriverVulkan::VkTrackedObjectType - Adds RenderingDevice::get_driver_and_device_memory_report - GDScript users can easily check via print( RenderingServer.get_rendering_device().get_driver_and_device_memory_report() ) - Uses get_driver_and_device_memory_report on device lost for appending further info. Fixes #95967
* Fix build error in arm32Matias N. Goldberg2024-08-231-5/+12
| | | | Fixes #95973
* Add debug utilities for VulkanMatias N. Goldberg2024-08-214-76/+839
| | | | | | | | | | | | | | | | | | | | | Features: - Debug-only tracking of objects by type. See get_driver_allocs_by_object_type et al. - Debug-only Breadcrumb info for debugging GPU crashes and device lost - Performance report per frame from get_perf_report - Some VMA calls had to be modified in order to insert the necessary memory callbacks Functionality marked as "debug-only" is only available in debug or dev builds. Misc fixes: - Early break optimization in RenderingDevice::uniform_set_create ============================ The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up.
* Fix building with `use_volk=yes` on MacOSDavid Snopek2024-06-192-2/+11
|
* vulkan: Update all components to Vulkan SDK 1.3.183.0Rémi Verschelde2024-06-031-0/+4
| | | | | | | Pass `VMA_ALLOCATOR_CREATE_KHR_MAINTENANCE5_BIT` to VMA when using Vulkan 1.3 features. Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
* Merge pull request #91769 from DarioSamo/d3d12_enhanced_barriersRémi Verschelde2024-05-312-37/+85
|\ | | | | | | Add support for enhanced barriers in D3D12.
| * Add support for enhanced barriers in D3D12.Dario2024-05-202-37/+85
| | | | | | | | | | | | | | | | Enables support for enhanced barriers if available. Gets rid of the implementation of [CROSS_FAMILY_FALLBACK] in the D3D12 driver. The logic has been reimplemented at a higher level in RenderingDevice itself. This fallback is only used if the RenderingDeviceDriver reports the API traits and the capability of sharing texture formats correctly. Aliases created in this way can only be used for sampling: never for writing. In most cases, the formats that do not support sharing do not support unordered access/storage writes in the first place.
* | [DisplayServer] Add method to check if window transparency is supported and ↵bruvzg2024-05-232-0/+11
|/ | | | enabled.
* Merge pull request #80232 from Calinou/vulkan-pipeline-cache-improve-messagesRémi Verschelde2024-05-201-3/+3
|\ | | | | | | Improve warning messages related to Vulkan pipeline cache
| * Improve warning messages related to Vulkan pipeline cacheHugo Locurcio2024-03-261-3/+3
| | | | | | | | | | | | | | | | | | This gives better explanations on why the cache may have been invalidated, along with usual consequences. These messages have also been moved to verbose prints, as users cannot do anything to resolve them specifically (so they are mostly relevant to developers).
* | Add optional driver workaround to RenderingDevice for Adreno 6XX.Dario2024-05-132-0/+29
| | | | | | | | Co-authored-by: Clay John <claynjohn@gmail.com>
* | [Core] Add `LocalVector::has` for convenienceA Thousand Ships2024-05-061-1/+1
| |
* | Improvements to VRS/Foveated renderingBastiaan Olij2024-05-032-1/+8
| |