summaryrefslogtreecommitdiffstats
path: root/drivers/vulkan
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix crash on compatibility fallback when vkCreateRenderPass2KHR is unavailable.Dario2024-04-251-1/+1
|/
* Use `Vector*` component-wise `min/max/clamp` functions where applicableA Thousand Ships2024-03-201-2/+1
|
* Merge pull request #89209 from RandomShaper/padding_for_dummiesRémi Verschelde2024-03-061-33/+17
|\ | | | | | | Make shader binary alignment handling simpler and more robust
| * Make shader binary alignment handling simpler and more robustPedro J. Estébanez2024-03-061-33/+17
| | | | | | | | | | Bonus: Also simplified the rounding to block size in image size calculations.
* | Vulkan: Don't warn about pipelines cache if missingRémi Verschelde2024-03-051-1/+3
|/ | | | | | | | It used to warn when opening a new project because no cache pre-exists, which isn't particularly helpful. Also include the rendering method in the cache filename, as it differs between Forward+ and Mobile for a same GPU.
* Merge execute and present commands for RenderingDeviceDriver.Dario2024-02-192-100/+129
|
* Handle VK_SUBOPTIMAL_KHR as a valid error code to fix Android performance.Dario2024-02-151-8/+21
|
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-128-3457/+2768
| | | | RenderingDeviceDriver.
* Add Wayland supportRiteo2024-01-301-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not everything is yet implemented, either for Godot or personal limitations (I don't have all hardware in the world). A brief list of the most important issues follows: - Single-window only: the `DisplayServer` API doesn't expose enough information for properly creating XDG shell windows. - Very dumb rendering loop: this is very complicated, just know that the low consumption mode is forced to 2000 Hz and some clever hacks are in place to overcome a specific Wayland limitation. This will be improved to the extent possible both downstream and upstream. - Features to implement yet: IME, touch input, native file dialog, drawing tablet (commented out due to a refactor), screen recording. - Mouse passthrough can't be implement through a poly API, we need a rect-based one. - The cursor doesn't yet support fractional scaling. - Auto scale is rounded up when using fractional scaling as we don't have a per-window scale query API (basically we need `DisplayServer::window_get_scale`). - Building with `x11=no wayland=yes opengl=yes openxr=yes` fails. This also adds a new project property and editor setting for selecting the default DisplayServer to start, to allow this backend to start first in exported projects (X11 is still the default for now). The editor setting always overrides the project setting. Special thanks to Drew Devault, toger5, Sebastian Krzyszkowiak, Leandro Benedet Garcia, Subhransu, Yury Zhuravlev and Mara Huldra.
* Improve stage and slice tracking behavior of RenderingDeviceGraph to fix ↵Dario2024-01-261-0/+47
| | | | various synchronization issues.
* Merge pull request #86855 from RandomShaper/fix_vk_get_imageRémi Verschelde2024-01-151-2/+5
|\ | | | | | | Fix determination of copyable layout for compressed textures in Vulkan
| * Fix determination of copyable layout for compressed textures in VulkanPedro J. Estébanez2024-01-061-2/+5
| |
* | Acyclic Command Graph for RenderingDevice.Dario2024-01-084-59/+46
| | | | | | | | Adds a new system to automatically reorder commands, perform layout transitions and insert synchronization barriers based on the commands issued to RenderingDevice.
* | Skip swapchain logic if there is nothing to present (Android OpenXR)Bastiaan Olij2024-01-082-5/+9
|/
* Merge pull request #86435 from jsjtxietian/fix-fp-unsupportRémi Verschelde2024-01-021-2/+0
|\ | | | | | | Add `RD_ENABLED` when `VULKAN_ENABLED` or `D3D12_ENABLED` is added
| * Add RD_ENABLED when VULKAN_ENABLED or D3D12_ENABLED is addedjsjtxietian2023-12-251-2/+0
| |
* | Fix wrong error message when graphics pipeline creation failswarriormaster122023-12-211-1/+1
|/
* Split RenderingDevice into API-agnostic and RenderingDeviceDriver partsPedro J. Estébanez2023-12-207-11251/+4044
| | | | | | Credit and thanks to @bruzvg for multiple build fixes, update of 3rd-party items and MinGW support. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Merge pull request #85532 from RandomShaper/kill_redund_clearYuri Sizov2023-12-082-51/+80
|\ | | | | | | Apply some low-hanging fruit optimizations to Vulkan RD
| * Remove superfluous locking in RID owners in Vulkan RDPedro J. Estébanez2023-12-011-13/+13
| |
| * Remove redundant explicit clears in the Vulkan RDPedro J. Estébanez2023-12-012-38/+67
| |
* | Merge pull request #84852 from Alex2782/fix_vulkan_buffer_androidRémi Verschelde2023-12-042-2/+5
|\ \ | | | | | | | | | Vulkan: Fix incorrect access to the buffers on Android
| * | Vulkan: Fix incorrect access to the buffers on AndroidAlexander Hartmann2023-11-152-2/+5
| |/
* | Merge pull request #83736 from darksylinc/matias-broken_buffer_updateRémi Verschelde2023-12-042-3/+8
|\ \ | |/ |/| | | Fix buffer updates going to the wrong cmd buffer if barriers were 0
| * Fix buffer updates going to the wrong cmd buffer if barriers were 0Matias N. Goldberg2023-10-212-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From what I could see only SSAO & SSIL were affected when they both call: int zero[1] = { 0 }; RD::get_singleton()->buffer_update(ssao.importance_map_load_counter, 0, sizeof(uint32_t), &zero, 0); int zero[1] = { 0 }; RD::get_singleton()->buffer_update(ssil.importance_map_load_counter, 0, sizeof(uint32_t), &zero, 0); Also documented what setup_command_buffer & draw_command_buffer are for.
* | Fix various typos with codespellRémi Verschelde2023-11-111-1/+1
| | | | | | | | Using 2.2.7.dev51+geb4a58fe.
* | Parse OpenGL and Vulkan strings as UTF-8.bruvzg2023-10-301-8/+8
|/
* Bump version of Vulkan RD binary shader formatPedro J. Estébanez2023-10-181-1/+2
|
* Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-2/+2
|
* Merge pull request #81827 from darksylinc/matias-vkfeatures-opt-inRémi Verschelde2023-10-051-5/+89
|\ | | | | | | Opt-in to Vulkan features we actually use.
| * Opt-in to Vulkan features we actually use.Matias N. Goldberg2023-09-241-5/+89
| |
* | Vertex and attribute compression to reduce the size of the vertex format.clayjohn2023-10-052-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | This allows Godot to automatically compress meshes to save a lot of bandwidth. In general, this requires no interaction from the user and should result in no noticable quality loss. This scheme is not backwards compatible, so we have provided an upgrade mechanism, and a mesh versioning mechanism. Existing meshes can still be used as a result, but users can get a performance boost by reimporting assets.
* | Workaround crash due to null shader when running XR project with --xr-mode offLyuma2023-10-021-0/+1
| |
* | [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-2/+2
| |
* | Add FidelityFX Super Resolution 2.2 (FSR 2.2.1) support.Dario2023-09-253-2/+36
| | | | | | | | Introduces support for FSR2 as a new upscaler option available from the project settings. Also introduces an specific render list for surfaces that require motion and the ability to derive motion vectors from depth buffer and camera motion.
* | Expose texture_create_from_extension to GDExtensionShawn Wallace2023-09-232-2/+2
|/
* Polish a few things in Vulkan RDPedro J. Estébanez2023-09-191-7/+4
|
* Fix validation error when using pipeline cache controlMatias N. Goldberg2023-09-163-1/+27
| | | | | | | | PR #80296 introduced a regression because it checks if the VK_EXT_pipeline_creation_cache_control extension has been enabled before using it, but turns out the process is a bit more convoluted than that (a Vulkan driver may support the extension but then say the feature is not supported)
* [Drivers,Platform] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-121-67/+67
|
* Enhance Vulkan PSO cachingPedro J. Estébanez2023-08-303-77/+95
|
* Fix missing EARLY_FRAGMENT_TESTS_BIT barrier flagsMatias N. Goldberg2023-08-271-4/+9
|
* Fix Vulkan texture updatebitsawer2023-08-191-1/+1
|
* Abort on startup with a visible alert if required Vulkan features are missingHugo Locurcio2023-08-171-3/+20
|
* Merge pull request #80288 from pkpro/memcpy_into_nullptrRémi Verschelde2023-08-171-4/+7
|\ | | | | | | Vulkan: Fix sanitizers error with empty shader name
| * Vulkan: Fix sanitizers error with empty shader namePavel Kraynyukhov2023-08-091-4/+7
| | | | | | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | Merge pull request #80571 from darksylinc/matias-resize-window-fixRémi Verschelde2023-08-161-14/+22
|\ \ | | | | | | | | | Fix validation error when resizing window
| * | Fix validation error when resizing windowMatias N. Goldberg2023-08-151-14/+22
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes when resizing the window we may get the following validation error: ERROR: VALIDATION - Message Id Number: -370888023 | Message Id Name: VUID-vkAcquireNextImageKHR-semaphore-01286 Validation Error: [ VUID-vkAcquireNextImageKHR-semaphore-01286 ] Object 0: handle = 0xdcc8fd0000000012, type = VK_OBJECT_TYPE_SEMAPHORE; | MessageID = 0xe9e4b2a9 | vkAcquireNextImageKHR: Semaphore must not be currently signaled or in a wait state. The Vulkan spec states: If semaphore is not VK_NULL_HANDLE it must be unsignaled (https://vulkan.lunarg.com/doc/view/1.2.198.1/linux/1.2-extensions/vkspec.html#VUID-vkAcquireNextImageKHR-semaphore-01286) In VulkanContext::prepare_buffers the problem was that vkAcquireNextImageKHR returned VK_SUBOPTIMAL_KHR but it already signaled the semaphore (because it is possible to continue normally with a VK_SUBOPTIMAL_KHR result). Then we recreate the swapchain and reuse the w->image_acquired_semaphores[frame_index] which is in an inconsistent state. Fixed by recreating the semamphores along the swapchain. Fix #80570
* | Merge pull request #80424 from DarioSamo/rd-buffer-copy-vulkanRémi Verschelde2023-08-162-0/+59
|\ \ | | | | | | | | | Add `buffer_copy` method to RenderingDevice
| * | Add buffer_copy method to RenderingDevice interface and an implementation ↵Dario2023-08-122-0/+59
| |/ | | | | | | | | | | for the Vulkan driver. Direct buffer copies are required to perform certain operations more efficiently, as the only current alternative is to download the buffer to the CPU and upload it again. As the first use case, the new function is used when enabling motion vectors on multimeshes.
* / Add support for GLSL source-level debugging with RenderDoc ↵sakrel2023-08-121-0/+4
|/ | | | (`--generate-spirv-debug-info`)