Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-09 | Fix dead link in TAA resolve shader comment | Hugo Locurcio | |
Spartan Engine has recently removed its own internal TAA in favor of FSR 2.0. The link has been changed to point to a fixed commit, so the link will keep working as long as the repository exists. | |||
2022-07-08 | Account for relative z-indexes when y-sorting | Xentripetal | |
2022-07-08 | Merge pull request #62277 from RandomShaper/depth_buffer_no_sampling | Rémi Verschelde | |
Rationalize certain cases of texture usage flags | |||
2022-07-06 | Prevent possible crash when mesh is freed | Yuri Rubinsky | |
2022-07-06 | Remove Octree | lawnjelly | |
Octree is no longer used in 4.x. | |||
2022-07-06 | Merge pull request #62344 from BastiaanOlij/extract_dependencies | Rémi Verschelde | |
2022-07-06 | Remove unused anisotropy setter/getter methods in VoxelGI | Hugo Locurcio | |
These methods weren't exposed to the scripting API. Anisotropy was used in earlier iterations of VoxelGI, but it was removed as it was too expensive. | |||
2022-07-02 | SCons: Properly track codegen script dependency for generated GLSL headers | Rémi Verschelde | |
2022-07-01 | Remove debugging print following GI reorganization | Hugo Locurcio | |
2022-06-28 | Merge pull request #62482 from JFonS/fix_crash_canvas_mode | Rémi Verschelde | |
2022-06-28 | Merge pull request #60935 from Calinou/geometryinstance3d-gi-mode-default-static | Rémi Verschelde | |
Use the Static global illumination mode in GeometryInstance3D by default | |||
2022-06-28 | Fix crash in Environment "Canvas" background mode. | JFonS | |
2022-06-28 | Merge pull request #62467 from RandomShaper/descriptor_rw_matters | Rémi Verschelde | |
Consider uniform writability part of the interface of the set | |||
2022-06-27 | Fixed FSR. Before, it was commiting the | Je06jm | |
raw render to the screen. Now, it commits the fsr upscaled image | |||
2022-06-27 | Consider uniform writability part of the interface of the set | Pedro J. Estébanez | |
2022-06-28 | Split dependency logic | Bastiaan Olij | |
Split FOG Split visibility notifier Final cleanup of storage classes | |||
2022-06-27 | Rationalize certain cases of texture usage flags | Pedro J. Estébanez | |
- Check for exhaustive usage flags for depth buffer - Remove uneeded storage flag from normal-roughness buffer | |||
2022-06-26 | Fix typo in roughness shaders | Bastiaan Olij | |
2022-06-24 | Moved cube_to_dp and cubemap logic into CopyEffects | Bastiaan Olij | |
2022-06-23 | Use the Static global illumination mode in GeometryInstance3D by default | Hugo Locurcio | |
This makes VoxelGI and SDFGI work out of the box with primitive meshes, loaded OBJ meshes and CSG nodes. | |||
2022-06-23 | Merge pull request #61221 from BastiaanOlij/split_gi_effects | Rémi Verschelde | |
2022-06-22 | Merge pull request #35758 from zmanuel/eliminate-draw-pending | Rémi Verschelde | |
Remove redundant thread sync counter draw_pending | |||
2022-06-22 | Merge pull request #62286 from JFonS/taa_global_time | Rémi Verschelde | |
2022-06-22 | Merge pull request #62305 from JFonS/taa_molten_mobile_workaround | Rémi Verschelde | |
2022-06-22 | Move TIME to a global shader variable | jfons | |
This makes it work consistently for motion vectors in all functions, including user-defined ones. | |||
2022-06-22 | Workaround MoltenVK shader conversion error | JFonS | |
2022-06-22 | Split GI effects and fix stereoscopic rendering of GI effects | Bastiaan Olij | |
2022-06-21 | Merge pull request #62122 from reduz/implement-movie-writer | Rémi Verschelde | |
Implement a Movie Maker mode | |||
2022-06-21 | Implement Running Godot as Movie Writer | reduz | |
* Allows running the game in "movie writer" mode. * It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time). * If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult. * Implements a simple, default MJPEG writer. This new features has two main use cases, which have high demand: * Saving game videos in high quality and ensuring the frame rate is *completely* stable, always. * Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this). **Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly). Usage: $ godot --write-movie movie.avi [scene_file.tscn] Missing: * Options for configuring video writing via GLOBAL_DEF * UI Menu for launching with this mode from the editor. * Add to list of command line options. * Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings). | |||
2022-06-20 | Clean up Hash Functions | reduz | |
Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934 * Clean up usage of murmur3 * Fixed usages of binary murmur3 on floats (this is invalid) * Changed DJB2 to use xor (which seems to be better) | |||
2022-06-18 | Merge pull request #62106 from BastiaanOlij/eye_offset | Rémi Verschelde | |
Introduce eye_offset for correcting stereoscopic reflections | |||
2022-06-17 | Introduce eye_offset for correcting stereoscopic reflections | Bastiaan Olij | |
Use view instead of vertex for reflections. | |||
2022-06-15 | Fix glow in Mix mode not working correctly when FXAA is enabled | Hugo Locurcio | |
Glow must be performed after FXAA to ensure correct appearance. | |||
2022-06-14 | Remove GLES2 shader constraints from GLES3 | clayjohn | |
2022-06-13 | Tweak Light3D property hints for greater flexibility | Hugo Locurcio | |
- Specular can now be set above 1.0. - Blur can be set to 0 to disable shadow blurring entirely, which is useful on lights that have a non-zero size. - When shadow blurring is disabled, lights that have a non-zero size will not use PCSS-like soft shadows, speeding up shadow rendering considerably. - Some property hints now allow more precise values. | |||
2022-06-10 | Prevent defining float constant without number after exponent in shaders | Yuri Rubinsky | |
2022-06-09 | Fix incorrect sky rotation based on camera axis | Yuri Rubinsky | |
2022-06-09 | Fix `TIME` compilation for custom functions in spatial shader | Yuri Rubinsky | |
2022-06-09 | Workaround MoltenVK error found in TAA implementation | jfons | |
2022-06-08 | Assign VIEWPORT_SIZE after validating screen_size to avoid crash when using ↵ | clayjohn | |
ReflectionProbe | |||
2022-06-08 | Merge pull request #61794 from clayjohn/VULKAN-viewport-size | Rémi Verschelde | |
Use RenderBuffer size instead of half extents for VIEWPORT_SIZE | |||
2022-06-07 | Use RenderBuffer size instead of half extents for VIEWPORT_SIZE in Vulkan ↵ | clayjohn | |
spatial shaders | |||
2022-06-07 | Initial TAA implementation | jfons | |
Initial TAA support based on the implementation in Spartan Engine. Motion vectors are correctly generated for camera and mesh movement, but there is no support for other things like particles or skeleton deformations. | |||
2022-06-03 | Merge pull request #61554 from Chaosus/shader_fix_hints | Rémi Verschelde | |
2022-06-01 | Ensure has_os_features is safely called as it can't be called from within ↵ | Bastiaan Olij | |
the construct of RenderingServerDefault on which it relies | |||
2022-05-31 | Merge pull request #61572 from clayjohn/ssao-license | Rémi Verschelde | |
2022-05-31 | Add and improve license attribution for SSAO and SSIL shader code | clayjohn | |
2022-05-31 | Refactor shader hints | Yuri Rubinsky | |
2022-05-28 | Fix error with !rb spam when using background color mode with reflection probes | clayjohn | |
2022-05-26 | Remove mesh and particles RD dependencies from canvas rendering server | clayjohn | |