summaryrefslogtreecommitdiffstats
path: root/servers/rendering/rendering_device.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | | 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>
* Split RenderingDevice into API-agnostic and RenderingDeviceDriver partsPedro J. Estébanez2023-12-201-471/+6190
| | | | | | 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-1/+1
| | | | | | | | | | | | | 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.
* [Servers] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-251-1/+1
|
* Expose texture_create_from_extension to GDExtensionShawn Wallace2023-09-231-0/+1
|
* Fix various typos with codespellRémi Verschelde2023-08-071-3/+3
| | | | | | | | | Also includes typo fixes from #79993, #80068, #80276, and #80303. Co-authored-by: betalars <contact@betalars.de> Co-authored-by: spaceyjase <429978+spaceyjase@users.noreply.github.com> Co-authored-by: Swarkin <102416174+Swarkin@users.noreply.github.com> Co-authored-by: Raul Santos <raulsntos@gmail.com>
* Fix or workaround recent extension API compatibility issuesRémi Verschelde2023-08-031-0/+1
| | | | | | | - 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 #79606 from clayjohn/ShaderRD-compilation-groupsYuri Sizov2023-08-011-1/+3
|\ | | | | | | Shader rd compilation groups
| * Add Shader compile groups to RD Shader systemclayjohn2023-07-211-1/+3
| | | | | | | | | | | | | | | | This allows us to specify a subset of variants to compile at load time and conditionally other variants later. This works seamlessly with shader caching. Needed to ensure that users only pay the cost for variants they use
* | Add custom texture create functionBastiaan Olij2023-07-261-0/+9
|/
* Split raster barrier into vertex and fragment barrierBastiaan Olij2023-07-151-1/+3
|
* Expose RD::texture_native_handleBastiaan Olij2023-06-141-0/+2
|
* Merge pull request #76418 from reduz/method-bind-validated-callRémi Verschelde2023-05-081-1/+9
|\ | | | | | | Add ValidatedCall to MethodBind
| * Add ValidatedCall to MethodBindJuan Linietsky2023-04-301-1/+9
| | | | | | | | | | | | | | * This should optimize GDScript function calling _enormously_. * It also should simplify the GDScript VM considerably. NOTE: GDExtension calling performance has most likely been affected until going via ptrcall is fixed.
* | Fix unsupported sampler filter used for voxel GIPedro J. Estébanez2023-04-261-0/+1
|/
* Fix `compute_pieline` typo in `RenderingDevice.compute_pipeline_is_valid()`Hugo Locurcio2023-04-101-1/+1
|
* Added optional offset and size parameter to RenderDevice buffer_get_data methodEpEpDragon2023-01-061-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Changed `STORAGE_BUFFER_USAGE_DISPATCH_INDIRECT` type to enum flagsYuri Rubinsky2022-12-151-1/+1
|
* Refactor SPIR-V reflection into a generic RenderingDevice featurePedro J. Estébanez2022-12-121-0/+327
|
* Changed `RD::PipelineDynamicStateFlags` type to enum flagsYuri Rubinsky2022-12-111-8/+8
|
* Changed `RenderingDevice::TextureUsageBits` type to enum flagsYuri Rubinsky2022-11-261-10/+10
|