summaryrefslogtreecommitdiffstats
path: root/servers/rendering/renderer_rd/renderer_canvas_render_rd.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-4/+5
|\
| * Resolve load and store ops automatically for render passes for discardable ↵Dario2024-11-251-4/+5
| | | | | | | | textures.
* | Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-24/+37
|\|
| * Mask out shadows on CanvasItems that don't have a matching item_shadow_maskclayjohn2024-11-211-24/+37
| | | | | | | | This restores the behavior from 3.x
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-20/+27
|\|
| * Merge pull request #98307 from clayjohn/Light2D-shadow-projectionThaddeus Crews2024-11-101-20/+27
| |\ | | | | | | | | | Precompute projection matrices when rendering 2D shadows
| | * Precompute projection matrices when rendering 2D shadowsclayjohn2024-10-181-20/+27
| | |
* | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-117/+258
|\| |
| * | 2D: Fix various issues and minor performance optimisationsStuart Carnie2024-10-301-117/+258
| |/
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | 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>
* Configure MSAA properly in canvas renderer's pipelines.DarioSamo2024-10-041-1/+4
|
* Properly utilize surface information when creating pipelines and vertex ↵clayjohn2024-10-031-12/+2
| | | | arrays in canvas renderer
* Implement asynchronous transfer queues, thread guards on RenderingDevice. ↵Dario2024-10-021-277/+237
| | | | | | | | | | | 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.
* Combine texture and instance data into one uniform set in the 2D rendererclayjohn2024-09-271-93/+71
| | | | Co-authored-by: Stuart Carnie <stuart.carnie@gmail.com>
* [2D,Metal]: Fix subpixel blending; fix inconsistent blend state in MetalStuart Carnie2024-09-201-0/+5
|
* 2D: Remove redundant assignmentStuart Carnie2024-09-171-4/+4
|
* 2D: Fix use-after-free in batch renderingStuart Carnie2024-09-141-91/+90
| | | | | Closes #96960 Fixes regression of #95574 using fix from #95666
* 2D: Add batching to RendererCanvasRenderRDStuart Carnie2024-09-121-826/+1038
|
* Merge pull request #90993 from darksylinc/matias-TheForgeRémi Verschelde2024-08-221-1/+2
|\ | | | | Add debug utilities for Vulkan
| * Add debug utilities for VulkanMatias N. Goldberg2024-08-211-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Simplify and fix Rect2/AABB get_support functionAaron Franke2024-08-191-1/+1
|/
* Fix Parallax2D repeats being not relative to its transformkleonc2024-08-191-17/+16
|
* Linearize color if HDR 2D is onFeiyue Zhang2024-07-241-4/+9
|
* Fix LCD font AA modulation in RendererRD.bruvzg2024-07-081-6/+6
|
* Fixes SDF Collision Enable/Disablecosparks2024-04-221-1/+1
| | | | | - sets LightOccluderInstance field when sdf collision is updated - adds check for light occluder sdf_collision field in 2d renderers
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-2/+11
| | | | | | | 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-2/+23
|
* Merge pull request #86564 from Giwayume/feature/canvas-item-shader-custom-dataRémi Verschelde2024-02-081-0/+5
|\ | | | | | | Support CUSTOM shader attributes in 2D
| * Add custom shader attributes to Canvas Item ShadersGiwayume2024-01-231-0/+5
| |
* | Clean up outdated `USE_LIGHT_SHADER_CODE` usagejsjtxietian2024-01-241-1/+0
| |
* | Fix incorrect mapping of initial action as clear region continue to clear.Dario2024-01-091-2/+1
| |
* | Acyclic Command Graph for RenderingDevice.Dario2024-01-081-7/+7
|/ | | | 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 #85811 from clayjohn/2D-render-infoRémi Verschelde2023-12-121-8/+52
|\ | | | | | | Implement render info counters for the 2D renderer
| * Implement render info counters for the 2D rendererclayjohn2023-12-061-8/+52
| | | | | | | | This provides information for the debug monitors
* | Fix CanvasOcclusionShaderRD format error with double precision build.bruvzg2023-12-061-8/+29
|/
* Ensure 2D MSAA resolve is performed when 3D content but no 2D content in sceneBastiaan Olij2023-11-161-0/+1
|
* 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.
* Merge pull request #79169 from reduz/debug-canvas-item-redrawRémi Verschelde2023-10-111-0/+47
|\ | | | | Debug CanvasItem redraw
| * Debug CanvasItem redrawJuan Linietsky2023-08-281-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I wanted to add this tool for years and always forget. This command line option: ``` $ godot.exe -e --debug-canvas-item-redraw ``` Allows to see when a canvas item is redrawn. This helps find out if something in the UI is refreshing in a way it should not. Examples as such: * Signals causing more of the UI to redraw. * Container resizing causes more UI elements to redraw. * Something using a timer is redrawing all time time, which can go unnoticed. To my surprise, the editor UI is redrawing very efficiently. There is some weird stuff with the scene tabs, redrawing when the inspector changes but most things for the most part are fine.
* | Replace `sanity` with `safety` for checksA Thousand Ships2023-10-081-1/+1
| |
* | 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-7/+7
| |
* | Merge pull request #81350 from DarioSamo/mipmap-biasRémi Verschelde2023-09-221-1/+1
|\ \ | | | | | | | | | Fix mipmap bias behavior by refactoring how samplers are created by Material Storage.
| * | Fix mipmap bias behavior by refactoring how samplers are created by Material ↵Dario2023-09-061-1/+1
| | | | | | | | | | | | | | | | | | Storage. Introduces a new structure to store samplers created with certain parameters instead of storing a 'custom' set of samplers. Allows viewports to correctly configure the mipmap bias and use it when rendering the scene.
* | | Merge pull request #81160 from paddy-exe/canvas-uv-world-spaceRémi Verschelde2023-09-191-0/+1
|\ \ \ | |/ / |/| | | | | Add render mode to use world coordinates in canvas item shader
| * | Add option to use world coordinates in canvas item shaderPatrick2023-08-301-0/+1
| |/ | | | | | | By using the render mode `world_vertex_coords` you can automatically use the vertex coordinates in world space
* / Use 16-bit index buffers instead of 32 when unnecessaryMatias N. Goldberg2023-09-031-9/+9
|/
* Merge pull request #80323 from garychia/canvas_point_sizeRémi Verschelde2023-08-211-1/+2
|\ | | | | | | Ensure `POINT_SIZE` takes effect in the canvas item shader
| * Ensure POINT_SIZE takes effectChia-Hsiang Cheng2023-08-061-1/+2
| |