summaryrefslogtreecommitdiffstats
path: root/servers/rendering/rendering_device.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* RenderingDevice: Fix uncapped mipmap sizes causing div-by-zeroPedro J. Estébanez2024-09-171-2/+2
| | | | (cherry picked from commit 7f1989bac11b74dd899b063194578d3a6ee917c6)
* Fail when submit or sync called on main rendering deviceclayjohn2024-09-161-3/+9
| | | | | | Fail if submit or sync called multiple times in a row (cherry picked from commit b0e33aa00f661966772a00d98e9bbbb6a1c008a3)
* RenderingDevice: Use the correct amount of layers for Cubemaps for boundary ↵BlueCube33102024-07-241-24/+6
| | | | checks
* RenderingDevice: Fix getting cubemap dataBlueCube33102024-07-231-3/+0
|
* Merge pull request #94069 from RandomShaper/fix_vk_vali_blockyRémi Verschelde2024-07-181-5/+6
|\ | | | | | | RenderingDevice: Leave handling of compressed block granularity to the driver
| * RenderingDevice: Leave handling of compressed block granularity to the driverPedro J. Estébanez2024-07-081-5/+6
| |
* | Silence Vulkan "Unable to acquire framebuffer." swapchain errorHugo Locurcio2024-07-091-1/+6
|/ | | | This error is harmless and can be safely ignored.
* Merge pull request #91551 from m4rr5/configure_timestamp_query_elementsRémi Verschelde2024-07-071-2/+2
|\ | | | | | | Add a project setting to configure the maximum number of timestamps.
| * Added a project setting to configure the maximum amount of timestamps, with ↵Marcel Offermans2024-05-051-2/+2
| | | | | | | | a description and a reference to the setting when the limit is hit and an ERR_FAIL_COND is hit.
* | Improve handling of rendering startup errorsPedro J. Estébanez2024-06-281-1/+1
| |
* | Merge pull request #92587 from RandomShaper/validate_tex_usageRémi Verschelde2024-05-311-0/+2
|\ \ | | | | | | | | | RenderingDevice: Reject creation of textures with no usage
| * | RenderingDevice: Reject creation of textures with no usagePedro J. Estébanez2024-05-311-0/+2
| | |
* | | Merge pull request #91769 from DarioSamo/d3d12_enhanced_barriersRémi Verschelde2024-05-311-18/+336
|\ \ \ | |/ / |/| | | | | Add support for enhanced barriers in D3D12.
| * | Add support for enhanced barriers in D3D12.Dario2024-05-201-18/+336
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #92258 from DarioSamo/render_list_pass_allocRémi Verschelde2024-05-231-3/+6
|\ \ \ | | | | | | | | | | | | Reduce allocations each time a render pass begins in RenderingDevice.
| * | | Switch vectors in each render pass to use TLS.Dario2024-05-231-3/+6
| |/ /
* / / [DisplayServer] Add method to check if window transparency is supported and ↵bruvzg2024-05-231-0/+4
|/ / | | | | | | enabled.
* | Merge pull request #88289 from DarioSamo/rd_minimized_windowRémi Verschelde2024-05-171-3/+0
|\ \ | | | | | | | | | Fix swap chain errors when application starts minimized.
| * | Handle error when setting boot image if swap chain is not available. Skip ↵Dario2024-02-131-3/+0
| | | | | | | | | | | | resizing swap chain during screen creation as it's not necessary and can fail when it starts minimized.
* | | Rewrite implementation for prepare for use commands to be skipped when not ↵Dario2024-05-151-16/+55
| | | | | | | | | | | | required by the API.
* | | Add optional driver workaround to RenderingDevice for Adreno 6XX.Dario2024-05-131-7/+68
| | | | | | | | | | | | Co-authored-by: Clay John <claynjohn@gmail.com>
* | | Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-4/+4
| |/ |/| | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | Merge pull request #91545 from clayjohn/RD-shadow-atlasRémi Verschelde2024-05-041-3/+3
|\ \ | | | | | | | | | Properly set size of shadow atlas quadrant when subdivision is 8 or higher.
| * | Properly set size of shadow atlas quadrant when subdivision is 8 or higher.clayjohn2024-05-031-3/+3
| | | | | | | | | | | | Also fix renderpass rect validation
* | | Add draw and dispatch count to timestamp validation.Dario2024-05-031-2/+6
|/ /
* | Merge pull request #90911 from clayjohn/RD-tex-copyRémi Verschelde2024-04-231-6/+7
|\ \ | | | | | | | | | Ensure minimum block size is respected when doing GPU to CPU copies of compressed textures
| * | Ensure minimum block size is respected when doing GPU to CPU copies of ↵clayjohn2024-04-191-6/+7
| | | | | | | | | | | | compressed textures
* | | Fix incorrect bounds check in rendering device push constantthimenesup2024-04-131-2/+2
|/ /
* | Merge pull request #89491 from thimenesup/compute_dispatch_indirectRémi Verschelde2024-04-091-0/+1
|\ \ | | | | | | | | | Expose bindings to compute dispatch indirect of rendering device
| * | Expose bindings to compute dispatch indirect rendering devicethimenesup2024-04-081-0/+1
| | |
* | | Fixes `RenderingDevice::get_driver_resource` will crash or give incorrect ↵jsjtxietian2024-04-081-6/+10
| | | | | | | | | | | | result with certain resources
* | | Add toggle for enabling or disabling RenderingDevice's pipeline cache.Dario2024-04-051-1/+2
| | |
* | | Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-1/+1
| | |
* | | Vulkan: Don't warn about pipelines cache if missingRémi Verschelde2024-03-051-3/+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.
* | Remove word duplicates in comments and strings, and fix casing and punctuationRobert Yevdokimov2024-02-231-5/+5
| |
* | Merge pull request #88631 from DarioSamo/mobile_subpass_usage_fixRémi Verschelde2024-02-221-11/+0
|\ \ | | | | | | | | | Remove tracking logic for input attachments as it's not necessary.
| * | Remove tracking logic for input attachments as it's not necessary.Dario2024-02-211-11/+0
| | |
* | | Merge execute and present commands for RenderingDeviceDriver.Dario2024-02-191-11/+14
|/ /
* / Add `--no-header` option to clean outputAnatoli Babenia2024-02-151-1/+1
|/ | | | | | | | | | | | | * Do not print empty line when header is disabled * Do not print Vulcan header * Also add "Print header" project setting (default On) (suggested by @kaissouDev) * Add docs for the project setting (with suggestions by @Mickeon and @akien-mga) Co-authored-by: Micky <66727710+Mickeon@users.noreply.github.com> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-249/+480
| | | | RenderingDeviceDriver.
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-3/+3
|
* Null check improvementsA Thousand Ships2024-01-191-17/+17
|
* Fix usage of index offsets in RenderingDevicePatrick Dawson2024-01-091-6/+6
|
* Acyclic Command Graph for RenderingDevice.Dario2024-01-081-1790/+896
| | | | 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-081-2/+6
|
* Merge pull request #86522 from RandomShaper/fix_uset_rebindRémi Verschelde2024-01-021-2/+2
|\ | | | | RenderingDevice: Fix uniform sets wrongly assumed to be bound
| * RenderingDevice: Fix uniform sets wrongly assumed to be boundPedro J. Estébanez2023-12-261-2/+2
| |
* | Fix potential integer underflow in rounded up divisionsEddieBreeg2024-01-021-1/+1
|/ | | | | | | | | | A new `Math::division_round_up()` function was added, allowing for easy and correct computation of integer divisions when the result needs to be rounded up. Fixes #80358. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>