summaryrefslogtreecommitdiffstats
path: root/servers/rendering/rendering_device.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-73/+65
|\
| * Resolve load and store ops automatically for render passes for discardable ↵Dario2024-11-251-73/+65
| | | | | | | | textures.
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-0/+2
|\|
| * Give the barrier pool its own mutex to avoid a deadlock with transfer workers.Dario2024-11-111-0/+2
| |
* | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-0/+1
|\|
| * Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-301-0/+3
|\|
| * Merge pull request #97247 from thimenesup/draw_indirect_rdThaddeus Crews2024-10-291-0/+1
| |\ | | | | | | | | | Add draw indirect to Rendering Device
| | * Add draw indirect to Rendering Devicethimenesup2024-10-291-0/+1
| | |
| * | Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-291-0/+2
| |\ \ | | | | | | | | Add Swappy & Pre-Transformed Swapchain
| | * | Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| | | |
* | | | Merge commit godotengine/godot@1015a481ff43edb1126ab39a147fefda290131e5Spartan3222024-10-241-0/+2
|\| | |
| * | | Implement thread ownership change for RenderingDevicePedro J. Estébanez2024-10-211-0/+2
| | | |
* | | | Merge commit godotengine/godot@80f0b33313dae52d072ba2771a88ebcc4f0b4d6dSpartan3222024-10-181-3/+9
|\| | |
| * | | Move transitions of textures initialized by transfer workers to the main ↵Dario2024-10-181-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | Rewrite semaphore handling for transfer workers.Dario2024-10-171-2/+5
| |/ /
* / / Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-021-35/+89
| | | | | | | | | | | | | | | | | | | | | | 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.
* | CI: Update `clang-format` pre-commit hook to 19.1.0Rémi Verschelde2024-09-261-1/+1
|/
* Add support for compiling with VS clang-cl toolsetAlula2024-08-281-1/+3
|
* Disable extra memory tracking by defaultMatias N. Goldberg2024-08-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Add debug utilities for VulkanMatias N. Goldberg2024-08-211-2/+27
| | | | | | | | | | | | | | | | | | | | | 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.
* Fail when submit or sync called on main rendering deviceclayjohn2024-08-121-0/+3
| | | | Fail if submit or sync called multiple times in a row
* Merge pull request #91769 from DarioSamo/d3d12_enhanced_barriersRémi Verschelde2024-05-311-0/+39
|\ | | | | | | Add support for enhanced barriers in D3D12.
| * Add support for enhanced barriers in D3D12.Dario2024-05-201-0/+39
| | | | | | | | | | | | | | | | 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-231-0/+2
|/ | | | enabled.
* Add context getter to RenderingDevicePedro J. Estébanez2024-05-171-0/+2
|
* Add optional driver workaround to RenderingDevice for Adreno 6XX.Dario2024-05-131-0/+3
| | | | Co-authored-by: Clay John <claynjohn@gmail.com>
* Add draw and dispatch count to timestamp validation.Dario2024-05-031-0/+2
|
* Revert change to default depth clear value in draw_list_beginclayjohn2024-04-171-1/+1
|
* Use Reverse Z for the depth bufferKhasehemwy2024-04-041-1/+1
|
* Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-1/+1
|
* Remove self includes in some filesblackbird8062024-02-271-1/+0
|
* Merge execute and present commands for RenderingDeviceDriver.Dario2024-02-191-2/+1
|
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-63/+63
| | | | RenderingDeviceDriver.
* Fix incorrect mapping of initial action as clear region continue to clear.Dario2024-01-091-1/+1
|
* Fix usage of index offsets in RenderingDevicePatrick Dawson2024-01-091-4/+2
|
* Acyclic Command Graph for RenderingDevice.Dario2024-01-081-99/+136
| | | | Adds a new system to automatically reorder commands, perform layout transitions and insert synchronization barriers based on the commands issued to RenderingDevice.
* Split RenderingDevice into API-agnostic and RenderingDeviceDriver partsPedro J. Estébanez2023-12-201-1010/+965
| | | | | | 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>
* Vertex and attribute compression to reduce the size of the vertex format.clayjohn2023-10-051-2/+2
| | | | | | | | | | | | | 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.
* Merge pull request #81356 from pkdawson/rd-compatYuri Sizov2023-09-271-0/+7
|\ | | | | | | Add compatibility methods for RenderingDevice BarrierMask
| * Add compatibility methods for RenderingDevice BarrierMaskPatrick Dawson2023-09-271-0/+7
| |
* | Add FidelityFX Super Resolution 2.2 (FSR 2.2.1) support.Dario2023-09-251-0/+18
| | | | | | | | 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-231-1/+1
|/
* Add buffer_copy method to RenderingDevice interface and an implementation ↵Dario2023-08-121-0/+1
| | | | | | 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.
* Fix or workaround recent extension API compatibility issuesRémi Verschelde2023-08-031-0/+5
| | | | | | | - Add compatibility methods for `RenderingDevice::shader_create_from_bytecode` and `CodeEdit::get_text_for_symbol_loopup`. - Silence errors which now have compatibility methods. - Acknowledge GraphEdit/GraphNode compat breakage, intended and WIP.
* Merge pull request #79911 from BastiaanOlij/fix_barrier_breakageYuri Sizov2023-08-011-6/+6
|\ | | | | | | Add exceptions for breakage introduced in RD barriers
| * Add exceptions for breakage introduced in RD barriers and prevent future ↵Bastiaan Olij2023-07-281-6/+6
| | | | | | | | breakage
* | Merge pull request #79606 from clayjohn/ShaderRD-compilation-groupsYuri Sizov2023-08-011-1/+2
|\ \ | | | | | | | | | Shader rd compilation groups