summaryrefslogtreecommitdiffstats
path: root/servers/rendering_server.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>
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-2/+2
|
* Fix AABB computation for position compression to not depend on vertex orderArseny Kapoulkine2024-07-031-16/+18
| | | | | | | | | | | | | | | | | | | The previous computation was dependent on the vertex order in two ways: - If the first vertex was on the AABB boundary, the AABB would be increased by the epsilon due to size clamping - Every time the AABB would get expanded, we would recompute end from size and reconstruct size again, which resulted in slow floating point drift. In isolation this may not seem like it matters, but it means that the same mesh with a different vertex order may result in a slightly different AABB. This can be a significant issue due to shadow meshes and their use in depth prepass: shadow meshes reorder vertex data as part of the deduplication process, as they append one unique position at a time and as such remove the duplicate positions; this can result in a different AABB which would result in a different reconstructed vertex position during a depth pre-pass, causing mesh self-occlusion.
* Add more validation to UBO size and alignment in Compatibility rendererclayjohn2024-06-141-1/+1
|
* Improve Mesh class descriptionMateus Elias2024-05-261-0/+1
| | | | | - Bind MAX_MESH_SURFACES constant in RenderingServer::_bind_methods() - Add MAX_MESH_SURFACES constant to RenderingServer class documentation - Reference the constant RenderingServer.MAX_MESH_SURFACES in the description of Mesh class documentation
* Add antialias support for CanvasItem draw primitivesYaohua Xiong2024-05-131-3/+3
| | | | | | including - rect, circle; both filled and unfilled. - polyline, multiline
* Improvements to VRS/Foveated renderingBastiaan Olij2024-05-031-1/+7
|
* Merge pull request #91372 from clayjohn/RS-blend-shape-tangentRémi Verschelde2024-05-011-0/+4
|\ | | | | | | Enable tangents in blend shape format when using normals
| * Enable tangents in blend shape format when using normalsclayjohn2024-04-301-0/+4
| |
* | OpenXR: Change timing of xrWaitFrame and add thread safety features to OpenXRBastiaan Olij2024-05-011-0/+1
|/
* Use WorkerThreadPool for Server threadsJuan Linietsky2024-04-101-9/+0
| | | | | | | | | | | | | | | | | * Servers now use WorkerThreadPool for background computation. * This helps keep the number of threads used fixed at all times. * It also ensures everything works on HTML5 with threads. * And makes it easier to support disabling threads for also HTML5. CommandQueueMT now syncs with the servers via the WorkerThreadPool yielding mechanism, which makes its classic main sync semaphore superfluous. Also, some warnings about calls that kill performance when using threaded rendering are removed because there's a mechanism that warns about that in a more general fashion. Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com>
* Add support for OpenXR composition layersDavid Snopek2024-04-041-0/+1
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-0/+9
| | | | | | | Adds fixed timestep interpolation to the rendering server (2D only). Switchable on and off with a project setting (default is off). Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Add new Parallax2D nodemarkdibarry2024-03-031-0/+1
|
* Merge pull request #86743 from Mickeon/autocompletion-optimise-objectRémi Verschelde2024-03-011-3/+3
|\ | | | | | | Optimise comparisons for Object's `get_argument_options`
| * Optimise Object's `get_argument_options`Micky2024-02-291-3/+3
| |
* | Merge pull request #88738 from clayjohn/mesh_compression-tangentsRémi Verschelde2024-02-271-2/+4
|\ \ | | | | | | | | | Multiple fixes for compressed meshes
| * | Avoid singularity when generated tangents and validate that tangents are ↵clayjohn2024-02-231-2/+4
| |/ | | | | | | good enough when using compression
* / Properly calculate binormal when creating SurfaceTool from arraysclayjohn2024-02-231-1/+1
|/
* Implement hooks into rendererBastiaan Olij2024-02-181-0/+28
|
* Add optional depth fogEidolon2024-02-171-1/+5
|
* Support custom AABB within MultiMesh resourcesArman Elgudzhyan2024-02-151-0/+2
| | | | | - Supporting custom AABB on the MultiMesh resource itself allows us to prevent costly runtime AABB recalculations. - Should also help improve CPU Particle performance.
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-3/+3
|
* Add a reflection mask to the reflection probes.Marcel Offermans2024-01-201-0/+1
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Deprecate RenderingServer's `has_feature` and Features enumMicky2024-01-101-4/+7
|
* Merge pull request #86798 from Mickeon/autocompletion-rendering-serverRémi Verschelde2024-01-091-0/+19
|\ | | | | | | Add autocompletion for RenderingServer's global shader methods & `has_os_feature`
| * Add autocompletion for RenderingServer's global shader & has_os_featureMicky2024-01-081-0/+19
| |
* | Acyclic Command Graph for RenderingDevice.Dario2024-01-081-1/+0
|/ | | | Adds a new system to automatically reorder commands, perform layout transitions and insert synchronization barriers based on the commands issued to RenderingDevice.
* Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-1/+1
|\ | | | | | | Add const references detected by clang-tidy
| * Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
| |
* | Fix unlimited project option ranges that could cause crashes.G-Shadow2023-12-221-8/+8
|/
* Merge pull request #85811 from clayjohn/2D-render-infoRémi Verschelde2023-12-121-0/+1
|\ | | | | | | Implement render info counters for the 2D renderer
| * Implement render info counters for the 2D rendererclayjohn2023-12-061-0/+1
| | | | | | | | This provides information for the debug monitors
* | Merge pull request #84451 from ShirenY/FixSkeletonMeshCullingRémi Verschelde2023-12-121-0/+10
|\ \ | |/ |/| | | Transform mesh's AABB to skeleton's space when calculating mesh's bounds
| * Transform mesh's AABB to skeleton's space when calculate mesh's bounds.ShirenY2023-12-091-0/+10
| |
* | Add a descriptive error message when creating a mesh surface from arraysAaron Franke2023-12-021-2/+2
| |
* | Avoid division by zero in the fix surface compatibility routineYuri Sizov2023-11-201-32/+34
| |
* | Create tangent array if mesh created without tangentsclayjohn2023-11-071-7/+32
|/ | | | | | This extends our previous change to ensure that compressed meshes have tangents Now we ensure tangents are always used. This greatly simplifies our compression code at the cost of a small amount of bandwidth
* Merge pull request #84252 from clayjohn/ensure_tangentsRémi Verschelde2023-11-021-10/+45
|\ | | | | | | Enhance checks and user experience around tangent arrays in meshes.
| * Enhance checks and user experience around tangents.clayjohn2023-11-011-10/+45
| | | | | | | | | | | | | | | | Ensure `ensure_tangents` option actually creates tangent array. Even if it is just a dummy array. Allow mesh to generate its own tangents when using compression. This allows users to compress meshes without tangents. Warn users if they are trying to read from tangents without providing tangents.
* | Overhaul the SurfaceUpgradeToolclayjohn2023-11-011-4/+4
|/ | | | | | | | This defers the update to a fresh restart of the editor (to ensure we aren't mid way through loading scenes anymore. It also ensures that the popup can't be used by multiple threads at once Co-authored-by: Yuri Sizov <yuris@humnom.net>
* Fix multiple issues with UV compressionclayjohn2023-10-301-10/+31
|
* Merge pull request #83840 from clayjohn/mesh-flat-bugRémi Verschelde2023-10-261-11/+8
|\ | | | | | | Ensure `r_aabb` is always used when creating surfaces through the RenderingServer
| * Ensure r_aabb is always used when creating surfaces through the RenderingServerclayjohn2023-10-231-11/+8
| |
* | Some more fixes for compressed meshesclayjohn2023-10-241-16/+16
| | | | | | | | | | | | | | This cleans up a few more cases of uint32_t->uint64_t Importantly this fixes an edge case in the axis-angle compression by using the pre-existing Basis methods instead
* | Merge pull request #83613 from clayjohn/surface_upgrade_toolRémi Verschelde2023-10-241-2/+26
|\ \ | |/ |/| Add an editor tool to automatically upgrade and re-save meshes
| * Implementation of tool to automatically upgrade and re-save meshesclayjohn2023-10-231-2/+26
| |
* | Add property hint for 2D shadow size project settingHugo Locurcio2023-10-221-1/+1
|/ | | | | | | | Previously, it was possible to use zero or negative values, which are invalid. This also prevents crashing the engine by setting a shadow size of 0 or lower from a script.
* Fix disabling depth prepass breaks opaque materialLunarisnia2023-10-151-2/+2
|