summaryrefslogtreecommitdiffstats
path: root/servers/rendering/renderer_viewport.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Apply snap 2D transforms to pixel to viewportAlvin Wong2024-09-231-0/+17
| | | | | | | | | | | | | | | We shall not leave the viewport transform to be rounded by the code for rounding canvas items. Since the viewport transform is inverse to the camera transform, we get incorrect rounding at the halfway point that misaligns the viewport and the canvas item which the camera is following. Instead, reintroduce viewport rounding, but do it in a way that matches the rounding of canvas items. Also take into account the half-pixel offset of the centre point when viewport dimension is not divisible by two. For `CanvasLayer`s that follows viewport, take into account the scale when rounding. Overall this should work better compared to the rounding in Godot 4.2 (and earlier).
* [Editor,Servers]: Minor optimizationsStuart Carnie2024-09-121-3/+4
|
* Merge pull request #92496 from clayjohn/HDR-2D-sRGBRémi Verschelde2024-08-191-0/+7
|\ | | | | | | Ensure MovieWriter output is in gamma space when using HDR 2D
| * Ensure MovieWriter output is in gamma space when using HDR 2Dclayjohn2024-05-281-0/+7
| |
* | Fix regression around OpenGL swapchain optimisation for OpenXRBastiaan Olij2024-07-291-2/+2
| |
* | Add warning when use FSR1 on renderer other than forward plusjsjtxietian2024-07-181-0/+1
| |
* | Ensure Motion Vectors are enabled by particles and skeletons when using the ↵clayjohn2024-06-111-1/+7
|/ | | | Motion Vector debug draw option
* Apply additional fixes to servers' threadingPedro J. Estébanez2024-05-081-5/+1
|
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-1/+1
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Improvements to VRS/Foveated renderingBastiaan Olij2024-05-031-0/+7
|
* Merge pull request #89880 from dsnopek/openxr-composition-layers-node3d-drsRémi Verschelde2024-04-041-2/+7
|\ | | | | | | Add support for OpenXR composition layers
| * Add support for OpenXR composition layersDavid Snopek2024-04-041-2/+7
| | | | | | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* | Add early return when setting `transparent_bg`Markus Sauermann2024-03-301-0/+3
|/ | | | Fix memory leak on Mac.
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-6/+39
| | | | | | | 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>
* Disable XR server when compiling without 3DAaron Franke2024-03-131-2/+12
|
* Merge pull request #87297 from adamscott/2d-pixel-art-stabilityRémi Verschelde2024-02-121-8/+0
|\ | | | | Stabilize snapping 2D transforms to pixel
| * Stabilize snapping 2D transforms to pixelAdam Scott2024-02-121-8/+0
| | | | | | | | Co-authored-by: Danni <34800072+KeyboardDanni@users.noreply.github.com>
* | Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-3/+0
|/ | | | RenderingDeviceDriver.
* Skip swapchain logic if there is nothing to present (Android OpenXR)Bastiaan Olij2024-01-081-4/+4
|
* Merge pull request #85811 from clayjohn/2D-render-infoRémi Verschelde2023-12-121-1/+6
|\ | | | | | | Implement render info counters for the 2D renderer
| * Implement render info counters for the 2D rendererclayjohn2023-12-061-1/+6
| | | | | | | | This provides information for the debug monitors
* | Merge pull request #84637 from clayjohn/RD-sampler-biasYuri Sizov2023-12-081-9/+3
|\ \ | |/ |/| | | Use render pass uniform set to store viewport samplers.
| * Use render pass uniform set to store viewport samplers.clayjohn2023-11-081-9/+3
| | | | | | | | | | | | | | | | This fixes a bugs where per-viewport samplers were being used for internal texture fetches (probes, sky, etc.). This also fixes a bug when using multiple viewports in the same scene. This also fixes a bug where the texture bias would override the bias from 3D scale.
* | Merge pull request #84957 from BastiaanOlij/fix_msaa2d_when_no_2dRémi Verschelde2023-11-221-0/+5
|\ \ | | | | | | | | | Ensure 2D MSAA resolve is performed when 3D content but no 2D content in scene
| * | Ensure 2D MSAA resolve is performed when 3D content but no 2D content in sceneBastiaan Olij2023-11-161-0/+5
| |/
* / Renderer Viewport correct sizeof usage.Alistair Leslie-Hughes2023-11-161-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | The current usage. In viewport_find_from_screen_attachment - Allocates a list of pointers, eg sizeof(RID*) * ridcount. We need fill that buffer viewport_owner.fill_owned_buffer(rids); ... p_rid_buffer[idx] = _make_from_id((validator << 32) | i); _make_from_id returns an RID object, not a pointer. Since there isn't a copy constructor, a bitwise copy of the object occurs. This issue will only present itself under 32bit builds. sizeof(RID) : 8 sizeof(RID*) : 4 whereas 64bit builds they are both 8.
* Skip 2D rendering if stereo enabled and fix MSAA2D with 3D issue.Bastiaan Olij2023-10-201-24/+36
|
* Merge pull request #82766 from BastiaanOlij/fix_debanding_issueRémi Verschelde2023-10-041-0/+1
|\ | | | | | | Forgot to add debanding to config object
| * Forgot to add debanding to config objectBastiaan Olij2023-10-041-0/+1
| |
* | Merge pull request #82101 from bruvzg/x11_glesRémi Verschelde2023-10-041-2/+2
|\ \ | | | | | | | | | [X11] Add support for using EGL/GLES instead of GLX.
| * | [X11] Add support for using EGL/GLES instead of GLX.bruvzg2023-10-041-2/+2
| |/
* / Fix drawing of viewports without swapping buffersPedro J. Estébanez2023-10-031-5/+8
|/
* [Servers] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-251-53/+53
|
* Add FidelityFX Super Resolution 2.2 (FSR 2.2.1) support.Dario2023-09-251-9/+50
| | | | Introduces support for FSR2 as a new upscaler option available from the project settings. Also introduces an specific render list for surfaces that require motion and the ability to derive motion vectors from depth buffer and camera motion.
* [macOS/Windows] Add optional ANGLE backed OpenGL renderer support. Add ↵bruvzg2023-09-211-2/+2
| | | | | | EGL_ANDROID_blob_cache caching. Co-authored-by: Riteo <riteo@posteo.net>
* Improve handling of motion vectors for multimesh instances.Dario2023-08-091-0/+9
| | | | Fixes #67287. There was a subtle error where due to how enabling motion vectors for multi-meshes was handled, only the first instance would have a valid transforms buffer and the rest would point to an invalid buffer. This change moves over the responsibility of enabling motion vectors only when changes happen to the individual 3D transforms or the entire buffer itself. It also fixes an unnecessary download of the existing buffer that'd get overwritten by the current cache if it exists. Another fix is handling the case where the buffer was not set, and enabling motion vectors would not cause the buffer to be recreated correctly.
* Add option to enable HDR rendering in 2Dclayjohn2023-08-071-0/+11
| | | | | | | This is needed to allow 2D to fully make use of 3D effects (e.g. glow), and can be used to substantially improve quality of 2D rendering at the cost of performance Additionally, the 2D rendering pipeline is done in linear space (we skip linear_to_srgb conversion in 3D tonemapping) so the entire Viewport can be kept linear. This is necessary for proper HDR screen support in the future.
* Expose RenderingSceneBuffers through ClassDBBastiaan Olij2023-07-261-1/+13
|
* Add RENDERING_INFO parameters to GL Compatibility rendererclayjohn2023-06-161-1/+1
| | | | | | | | This also fixes RENDERING_INFO_TOTAL_PRIMITIVES_IN_FRAME for the RD renderers as it was incorrectly reporting vertex/index count at times This also adds memory tracking to textures and buffers to catch memory leaks. This also cleans up some memory leaks that the new system caught.
* Expose viewports render targer RIDBastiaan Olij2023-03-311-0/+7
|
* Use the original canvas to calculate light positioningAlon Ran2023-02-211-1/+1
|
* Merge pull request #73240 from myaaaaaaaaa/worker-hRémi Verschelde2023-02-131-0/+1
|\ | | | | | | Move some `worker_thread_pool.h` includes out of header files
| * Move some worker_thread_pool.h includes out of header filesmyaaaaaaaaa2023-02-131-0/+1
| |
* | Do clear request before reading from render target when using CANVAS_BGclayjohn2023-02-101-3/+12
| |
* | Fix crash in editor when setting `SubViewport.size` to zeroMarkus Sauermann2023-02-101-1/+1
|/ | | | | `Viewport::_set_size` now verifies, that the minimum size is at least 2x2. Also fix `RendererViewport::viewport_set_size` fail condition.
* Remove viewport_set_disable_environment in favor of ↵clayjohn2023-01-301-3/+13
| | | | | | viewport_set_environment_mode This allows us to set a default value inherited by child viewports and have child viewports set the value themselves which is needed for disabling the environment in the editor
* Warn when trying to enable TAA from mobile or gl_compatibility backendclayjohn2023-01-161-0/+1
| | | | TAA should only be enabled from the forward_plus renderer for now
* Improving communication of scaling settings to renderer implementationBastiaan Olij2023-01-131-34/+34
|