Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-12 | Use List Initializations for Vectors. | Anilforextra | |
2022-01-08 | Use fill() to fill an entire image instead of setting pixels individually. | Anilforextra | |
2022-01-06 | Fix queueing a texture and regular uniform update in RD backend in succession. | SaracenOne | |
2022-01-05 | Added material_overlay property to MeshInstance3D | Fernando Cosentino | |
Applying overlay materials into multi-surface meshes currently requires adding a next pass material to all the surfaces, which might be cumbersome when the material is to be applied to a range of different geometries. This also makes it not trivial to use AnimationPlayer to control the material in case of visual effects. The material_override property is not an option as it works replacing the active material for the surfaces, not adding a new pass. This commit adds the material_overlay property to GeometryInstance3D (and therefore MeshInstance3D), having the same reach as material_override (that is, all surfaces) but adding a new material pass on top of the active materials, instead of replacing them. | |||
2022-01-05 | Merge pull request #56220 from ↵ | JFonS | |
williamd67/GPULightmapper-implement-sky-ambient-light GPULightmapper: react on sky ambient properties | |||
2022-01-05 | Merge pull request #56208 from williamd67/GPULightmapper-sky-upside-down | Rémi Verschelde | |
2022-01-05 | Merge pull request #56278 from GanidhuAbey/dof_msaa_bug | Rémi Verschelde | |
2022-01-05 | Fix incorrect format and buffer used for bone weights. | bruvzg | |
2022-01-04 | Merge pull request #55332 from Calinou/voxelgidata-tweak-default-dynamic-range | Rémi Verschelde | |
Decrease the default dynamic range in VoxelGIData to 2.0 | |||
2022-01-04 | Merge pull request #54791 from NHodgesVFX/master | Rémi Verschelde | |
[4.x] add more OpenGL attributes | |||
2022-01-04 | Merge pull request #56486 from Chaosus/shader_fix_render_mode | Yuri Roubinsky | |
2022-01-04 | Merge pull request #55790 from Calinou/renderingserver-add-device-type-getter | Rémi Verschelde | |
Add `RenderingServer.get_video_adapter_type()` method | |||
2022-01-04 | Merge pull request #56305 from Calinou/rename-lod-threshold | Rémi Verschelde | |
2022-01-04 | Merge pull request #55386 from Calinou/allow-disable-depth-prepass | Rémi Verschelde | |
2022-01-04 | Fix `world_vertex_coords` render mode usage in the shaders | Yuri Roubinsky | |
2022-01-04 | Merge pull request #55418 from Calinou/voxelgi-dynamic-map-use-16-bit-depth | JFonS | |
Use 16-bit depth to improve dynamic VoxelGI performance | |||
2022-01-04 | Merge pull request #51206 from clayjohn/Vulkan-ASSGI | Rémi Verschelde | |
2022-01-04 | Merge pull request #54409 from clayjohn/VULKAN-glow-flicker | Rémi Verschelde | |
2022-01-04 | Merge pull request #55424 from Calinou/voxelgi-remove-unused-struct-fields | Rémi Verschelde | |
Remove unused struct fields in VoxelGIData | |||
2022-01-04 | Merge pull request #55422 from Calinou/gi-shader-remove-unused-define | Rémi Verschelde | |
Remove unused code in GI shaders | |||
2022-01-03 | Update copyright statements to 2022 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2022-01-03 | Add a shader warning when the uniform buffer limit is exceeded | Yuri Roubinsky | |
2022-01-03 | Merge pull request #56187 from Chaosus/fix_default_texture | Rémi Verschelde | |
2021-12-31 | Fix incorrect updating global uniform buffer | Yuri Roubinsky | |
2021-12-29 | Rename Lod Threshold to Mesh Lod Threshold | Hugo Locurcio | |
This makes it more obvious that the setting only affects mesh LOD, not manual (H)LOD achieved using visibility ranges. | |||
2021-12-26 | fixed depth of field bug with msaa | GanidhuAbey | |
2021-12-24 | GPULightmapper: react on sky ambient properties | William Deurwaarder | |
The panorama texture creation, used by GPULightmapper, has been adjusted to also take the sky ambient properties into account. | |||
2021-12-24 | GPULightmapper: cube to panorama copy function flip y based on flag | William Deurwaarder | |
Cube to panorama copy function unconditionally flipped y, while other copy functions flipped y base on FLAG_FLIP_Y. Condition is added. | |||
2021-12-23 | Fix default texture of unassigned sampler with hint_normal | Yuri Roubinsky | |
2021-12-10 | Rename `hint_aniso` to `hint_anisotropy` in the shader language | Hugo Locurcio | |
The word "anisotropy" is used in full form in BaseMaterial3D's anisotropy-related properties. | |||
2021-12-10 | Add `RenderingServer.get_video_adapter_type()` method | Hugo Locurcio | |
This can be used to distinguish between integrated, dedicated, virtual and software-emulated GPUs. This in turn can be used to automatically adjust graphics settings, or warn users about features that may run slowly on their hardware. | |||
2021-12-10 | Merge pull request #43181 from nathanfranke/string-empty | Rémi Verschelde | |
Replace String comparisons with "", String() to is_empty() | |||
2021-12-09 | Merge pull request #55714 from Geometror/fix-fog-spotlight | Rémi Verschelde | |
2021-12-09 | Replace String comparisons with "", String() to is_empty() | Nathan Franke | |
Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings | |||
2021-12-08 | Fix volumetric fog in combination with spotlights | Hendrik Brucker | |
2021-12-08 | Make `compile` shader function to use struct instead long parameter list | Yuri Roubinsky | |
2021-12-08 | Decrease the default dynamic range in VoxelGIData to 2.0 | Hugo Locurcio | |
This reduces visible banding in indirect lighting and reflections. Sharp reflections now match more closely the original scene. The downside of this change is that clipping may appear in reflections in extremely bright scenes, but this should not be a concern in most scenes. | |||
2021-12-07 | Merge pull request #35901 from nathanfranke/pool-byte-array-subarray-exclusive | Rémi Verschelde | |
2021-12-05 | Remove or make verbose some debugging prints | Hugo Locurcio | |
The message about SpatialMaterial conversion was turned into a warning, as it can potentially interfere with porting projects from Godot 3.x (if there's a bug in the conversion code). | |||
2021-12-01 | Allow using empty statements in the shader, added formatting warning | Yuri Roubinsky | |
2021-11-28 | Remove unused struct fields in VoxelGIData | Hugo Locurcio | |
This reduces the struct size from 112 bytes to 96 bytes. | |||
2021-11-28 | Remove unused code in GI shaders | Hugo Locurcio | |
2021-11-28 | Use 16-bit depth to improve dynamic VoxelGI performance | Hugo Locurcio | |
In a complex scene with several dynamic emissive objects, this saves over 1 ms of GPU time on a GTX 1080 in 2560×1440. | |||
2021-11-27 | Allow disabling the depth prepass in the Vulkan Clustered backend | Hugo Locurcio | |
In scenes that have little to no overdraw, disabling the depth prepass can give a small performance boost. Nonetheless, in most other scenarios, the depth prepass should be left enabled as it improves performance significantly. | |||
2021-11-26 | PackedByteArray, Array slice end exclusive, rename subarray to slice | Nathan Franke | |
2021-11-26 | Fix `TIME` using in custom functions of particle shader | Yuri Roubinsky | |
2021-11-26 | Merge pull request #55311 from Chaosus/fix_uniform_array | Rémi Verschelde | |
Fix uniform array alignment to fix a bug | |||
2021-11-25 | Fix uniform array alignment to fix a bug | Yuri Roubinsky | |
2021-11-25 | Remove disabled debug code in ClusterBuilderRD | Hugo Locurcio | |
2021-11-25 | [macOS / iOS] Use non atomic operation to store facing bits on MoltenVK. | bruvzg | |