Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-13 | Fix broken light_compute in mobile renderer | Yuri Roubinsky | |
2021-11-12 | Fix multimesh still drawing when visible instances is zero | Brian Semrau | |
2021-11-12 | Fix default_texture_param in shader pipeline to support uniform arrays | Yuri Roubinsky | |
2021-11-11 | Fix shader crashing when using `ALBEDO` or `ALPHA` in light function | Yuri Roubinsky | |
2021-11-10 | Merge pull request #54783 from ator-dev/fix-override-exposure | Rémi Verschelde | |
2021-11-08 | Implement CameraEffects override_exposure | Dominic-ATOR | |
2021-11-07 | Pushes array of uniforms to first place in the buffer to prevent bug | Yuri Roubinsky | |
2021-11-05 | Use Callable in RS::request_frame_drawn_callback | Brian Semrau | |
2021-11-03 | Rename `PROPERTY_USAGE_NOEDITOR` to `PROPERTY_USAGE_NO_EDITOR` | Hugo Locurcio | |
This is consistent with other constants that include `NO`, such as `PROPERTY_HINT_COLOR_NO_ALPHA`. | |||
2021-11-01 | Merge pull request #54356 from Chaosus/shader_fix_matrix_autocompletion | Rémi Verschelde | |
2021-11-01 | Merge pull request #54480 from timothyqiu/texture-replace | Rémi Verschelde | |
2021-11-01 | Fix memory leak when using CurveTexture.set_texture_mode | Haoyu Qiu | |
2021-11-01 | Merge pull request #54459 from rxlecky/fix-multimesh-buffer-overflow-53603 | Rémi Verschelde | |
2021-10-31 | Fix multimesh buffer overflow in RendererStorageRD | SeleckyErik | |
2021-10-31 | Merge pull request #54448 from CakHuri/treshold-to-threshold | Rémi Verschelde | |
Repair mistyped of 'threshold' on several files. | |||
2021-10-31 | Merge pull request #54307 from Calinou/add-opengl-renderer-squash | Rémi Verschelde | |
Add OpenGL renderer (squashed) | |||
2021-10-31 | Repaired mistyped of 'threshold' on several files. | M. Huri | |
2021-10-31 | Use OpenGL 3.3 core profile instead of compatibility profile | Clay John | |
- Rename OpenGL to GLES3 in the source code per community feedback. - The renderer is still exposed as "OpenGL 3" to the user. - Hide renderer selection dropdown until OpenGL support is more mature. - The renderer can still be changed in the Project Settings or using the `--rendering-driver opengl` command line argument. - Remove commented out exporter code. - Remove some OpenGL/DisplayServer-related debugging prints. | |||
2021-10-31 | Merge pull request #54403 from briansemrau/fix-small-fogvolume | Rémi Verschelde | |
FogVolume don't dispatch compute with zero-dimension groups | |||
2021-10-30 | Don't use Texture image caches if they are rendered to | Brian Semrau | |
2021-10-30 | Merge pull request #54405 from JFonS/fix_instance_index | Rémi Verschelde | |
Fix instance index in forward clustered shader | |||
2021-10-30 | Disallow compute dispatch with zero dimensions. | Brian Semrau | |
2021-10-30 | Fix instance index in forward clustered shader | jfons | |
2021-10-30 | Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3 | Hugo Locurcio | |
- Use lowercase driver names for the `--rendering-driver` command line argument. | |||
2021-10-30 | Add GLES2 2D renderer + Linux display manager | lawnjelly | |
First implementation with Linux display manager. - Add single-threaded mode for EditorResourcePreview (needed for OpenGL). Co-authored-by: clayjohn <claynjohn@gmail.com> Co-authored-by: Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | |||
2021-10-29 | Fix error spammed to output if `FogVolume` is setted to scene | Yuri Roubinsky | |
2021-10-29 | Fix crash when opening a converted `FogMaterial` | Yuri Roubinsky | |
2021-10-28 | Addition of FogVolumes, FogShaders, FogMaterial, and overhaul of VolumetricFog | clayjohn | |
Co-authored-by: Brian Semrau <brian.semrau@gmail.com> | |||
2021-10-28 | Removed incorrect autocompletion of matrixes in shader | Yuri Roubinsky | |
2021-10-28 | Merge pull request #54350 from akien-mga/clang-format-dont-align-operands | Rémi Verschelde | |
2021-10-28 | Merge pull request #54222 from JFonS/instance-fade | Rémi Verschelde | |
2021-10-28 | clang-format: Various fixes to comments alignment from `clang-format` 13 | Rémi Verschelde | |
All reviewed manually and occasionally rewritten to avoid bad auto formatting. | |||
2021-10-28 | clang-format: Disable alignment of operands, too unreliable | Rémi Verschelde | |
Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`. | |||
2021-10-26 | Fix shadow disabling on mobile renderer | Joan Fons | |
2021-10-25 | Fix shadow disabling settings | jfons | |
Fixes the SHADOW_CASTING_SETTING_OFF setting in GeometryInstance3D and the "shadows_disabled" render mode in spatial materials, which were not working before. | |||
2021-10-25 | Implement distance fade and transparency | JFonS | |
The built-in ALPHA in spatial shaders comes pre-set with a per-instance transparency value. Multiply by it if you want to keep it. The transparency value of any given GeometryInstance3D is affected by: - Its new "transparency" property. - Its own visiblity range when the new "visibility_range_fade_mode" property is set to "Self". - Its parent visibility range when the parent's fade mode is set to "Dependencies". The "Self" mode will fade-out the instance when reaching the visibility range limits, while the "Dependencies" mode will fade-in its dependencies. Per-instance transparency is only implemented in the forward clustered renderer, support for mobile should be added in the future. Co-authored-by: reduz <reduzio@gmail.com> | |||
2021-10-25 | Fix state inconsistencies in visibility dependencies. | jfons | |
2021-10-22 | Merge pull request #53992 from Calinou/hard-shadow-mapping-allow-dithering | Rémi Verschelde | |
2021-10-21 | Merge pull request #54082 from Chaosus/fix_shader_crash | Yuri Roubinsky | |
2021-10-21 | Prevent shader crash when passing constant expression to `textureGather` | Yuri Roubinsky | |
2021-10-21 | Add Soft Very Low shadow quality mode for 3D | Hugo Locurcio | |
This can be used to improve 3D shadow rendering quality at little performance cost. Unlike the existing Hard setting which is limited to variable shadow blur only, it works with both fixed blur and variable blur. | |||
2021-10-21 | Fix built-in texture samplers passing for spatial shader mode | Yuri Roubinsky | |
2021-10-20 | Prevent a rendering crash and error spam for uniform texture array | Yuri Roubinsky | |
2021-10-19 | Merge pull request #53972 from zedutch/fix-shader-time-update | Rémi Verschelde | |
Fix shaders using `TIME` not continuously updating | |||
2021-10-19 | Merge pull request #53790 from briansemrau/remove-distant-shadowy-void | Rémi Verschelde | |
2021-10-19 | Merge pull request #52940 from groud/toast_notification | Rémi Verschelde | |
2021-10-19 | Merge pull request #52210 from BastiaanOlij/enhance_xr_trackers | Rémi Verschelde | |
2021-10-18 | Fix shaders that use TIME do not force editor to continuously update | Robin Arys | |
2021-10-18 | Validate enum range in RendererViewport::viewport_get_render_info | Haoyu Qiu | |
2021-10-17 | Rework XR positional trackers | Bastiaan Olij | |