summaryrefslogtreecommitdiffstats
path: root/servers/rendering/renderer_compositor.h
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>
* Fix regression around OpenGL swapchain optimisation for OpenXRBastiaan Olij2024-07-291-1/+1
|
* fix missing cleanup and null checks for various singletonsrune-scape2024-06-181-1/+1
|
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-1/+0
| | | | RenderingDeviceDriver.
* Skip swapchain logic if there is nothing to present (Android OpenXR)Bastiaan Olij2024-01-081-0/+1
|
* Forbid passing multiview sampler to the custom function in shadersYuri Rubinsky2023-02-211-0/+2
|
* 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".
* Use a giant UBO to optimize performance in 2Dclayjohn2022-10-061-0/+1
| | | | | | | | This removes the countless small UBO writes we had before and replaces them with a single large write per render pass. This results in much faster rendering on low-end devices but improves speed on all devices.
* Split rendering driver project setting into renderer_name and ↵clayjohn2022-09-191-1/+1
| | | | rendering_driver. To differentiate between a driver (e.g. Vulkan or D3D12) and a renderer (e.g. clustered or mobile renderer).
* Implement Physical Light Units as an optional setting.clayjohn2022-08-311-0/+1
| | | | | | This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes.
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Split dependency logicBastiaan Olij2022-06-281-2/+4
| | | | | | Split FOG Split visibility notifier Final cleanup of storage classes
* Split GI effects and fix stereoscopic rendering of GI effectsBastiaan Olij2022-06-221-0/+2
|
* SkyShaders workingclayjohn2022-05-111-1/+2
|
* Moved particles into ParticlesStorageBastiaan Olij2022-04-171-0/+2
|
* Move light, reflection probe and lightmap into LightStorageBastiaan Olij2022-04-171-0/+2
|
* Merge canvas and decal into TextureStorage and add render targetBastiaan Olij2022-04-171-4/+0
|
* Move storage for Mesh, MeshInstance, MultiMesh and Skeleton into MeshStorageBastiaan Olij2022-04-021-0/+2
|
* Extract global variable, shader and material storageBastiaan Olij2022-03-311-0/+2
|
* Extract Decal and Decal atlas from Storage classBastiaan Olij2022-03-211-0/+2
|
* Split dummy renderer classes into separate filesBastiaan Olij2022-03-161-0/+4
| | | | Split canvas_texture_storage and texture_storage from render_storage class
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-3/+1
|
* Revert "Add new scaling modes for splash screen"Rémi Verschelde2022-01-191-1/+1
| | | | | | | This reverts commit fcc9f5ce396ff921ed8253f657a8c9c38e7a878d. The feature is good but the implementation still needs more work. A new PR will be made with a rework of this commit.
* Add new scaling modes for splash screenSamuel Pedrajas2022-01-181-1/+1
| | | | | | Removes the `fullsize` option which is superseded by `stretch_mode`. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Implemented AMD's FSR as a computer shader for upscaling 3D scenesJe06jm2021-11-231-1/+2
|
* Add source rectangle to blitBastiaan Olij2021-08-291-1/+2
|
* Use doubles for time in many other placesAaron Franke2021-08-091-1/+1
|
* Fix Render Inforeduz2021-07-031-2/+1
| | | | | | | | * Fixed and redone the process to obtain render information from a viewport * Some stats, such as material changes are too difficult to guess on Vulkan, were removed. * Separated visible and shadow stats, which causes confusion. * Texture, buffer and general video memory can be queried now. * Fixed the performance metrics too.
* Add stereoscopic rendering through multiviewBastiaan Olij2021-06-131-21/+26
|
* Implementing blit shader with versionsBastiaan Olij2021-05-121-1/+16
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* RenderingServer reorganizationreduz2020-12-041-0/+78