summaryrefslogtreecommitdiffstats
path: root/drivers/vulkan
Commit message (Expand)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 initializationmrsaturnsan2024-11-121-4/+1
* | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-112-9/+36
|\| |
| * | Merge pull request #98883 from ducklin5/fix/VkResultErrorThaddeus Crews2024-11-102-1/+22
| |\ \
| | * | fix: add vulkan error checks in command_queue_execute_and_presentAzeez Abass2024-11-062-1/+22
| * | | Account for the case surface_capabilities.currentExtent is unsetTrevor Davenport2024-11-052-8/+14
| |/ /
* | | 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 (superficial)Thaddeus Crews2024-11-041-2/+2
| | * | Style: Apply `clang-tidy` fixesThaddeus Crews2024-11-042-2/+2
| | |/
| * / Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-312-0/+27
| |/
* | 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 SwapchainMatias N. Goldberg2024-10-282-9/+153
| * | 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 12Hugo Locurcio2024-10-171-3/+1
| | |/
* | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-277-14/+14
|\ \ \
| * | | 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
* | | Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-222-7/+44
|\| |
| * | Improve synchronization of rendering commands after changes from transfer que...Dario2024-10-212-7/+44
* | | Merge commit godotengine/godot@80f0b33313dae52d072ba2771a88ebcc4f0b4d6dSpartan3222024-10-181-0/+1
|\| |
| * | Move transitions of textures initialized by transfer workers to the main grap...Dario2024-10-181-0/+1
| |/
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-117-0/+14
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-112-6/+6
|/
* Implement asynchronous transfer queues, thread guards on RenderingDevice. Add...Dario2024-10-022-5/+1
* Move Vulkan includes to a central godot_vulkan.h headerGergely Kis2024-09-294-15/+45
* 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.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 `texture_cr...Sander2024-09-122-4/+8
* Merge pull request #96045 from darksylinc/matias-TheForge-pr02Rémi Verschelde2024-09-021-0/+11
|\
| * Add VK_EXT_astc_decode_mode supportMatias N. Goldberg2024-08-241-0/+11
* | Disable extra memory tracking by defaultMatias N. Goldberg2024-08-243-3/+17
|/
* Fix build error in arm32Matias N. Goldberg2024-08-231-5/+12
* Add debug utilities for VulkanMatias N. Goldberg2024-08-214-76/+839
* 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
* Merge pull request #91769 from DarioSamo/d3d12_enhanced_barriersRémi Verschelde2024-05-312-37/+85
|\
| * Add support for enhanced barriers in D3D12.Dario2024-05-202-37/+85
* | [DisplayServer] Add method to check if window transparency is supported and e...bruvzg2024-05-232-0/+11
|/
* Merge pull request #80232 from Calinou/vulkan-pipeline-cache-improve-messagesRémi Verschelde2024-05-201-3/+3
|\
| * Improve warning messages related to Vulkan pipeline cacheHugo Locurcio2024-03-261-3/+3
* | Add optional driver workaround to RenderingDevice for Adreno 6XX.Dario2024-05-132-0/+29
* | [Core] Add `LocalVector::has` for convenienceA Thousand Ships2024-05-061-1/+1
* | Improvements to VRS/Foveated renderingBastiaan Olij2024-05-032-1/+8