summaryrefslogtreecommitdiffstats
path: root/modules/lightmapper_rd
Commit message (Collapse)AuthorAgeFilesLines
...
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-152-3/+5
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* One Copyright Update to rule them allRémi Verschelde2023-01-054-116/+116
| | | | | | | | | | | | | | | | | | | | 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".
* Add optional UV2 logic for lightmapping to primitive shapesBastiaan Olij2022-11-131-0/+1
|
* Make some Image methods statickobewi2022-10-141-41/+15
|
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-4/+4
| | | | change warnings=all to use /W4.
* Implement Physical Light Units as an optional setting.clayjohn2022-08-313-2/+8
| | | | | | 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.
* Rename `str2var` to `str_to_var` and similarMicky2022-08-261-2/+2
| | | | | | | | | | | | | | | | | | Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict`
* Fix some array size function definition mismatch.Fabio Alessandrelli2022-08-041-1/+1
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-252-2/+2
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Use integer types in Image and ImageTexture methodsFireForge2022-07-181-3/+3
| | | | | | | | | | | - Image.blit_rect() - Image.blit_rect_mask() - Image.blend_rect() - Image.blend_rect_mask() - Image.fill_rect() - Image.get_used_rect() - Image.get_rect() - ImageTexture.set_size_override()
* SCons: Properly track codegen script dependency for generated GLSL headersRémi Verschelde2022-07-021-3/+1
|
* add support for soft shadows to the lightmapperPriyansh Rathi2022-06-244-45/+98
|
* Clean up Hash Functionsreduz2022-06-201-15/+15
| | | | | | | 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)
* Merge pull request #60723 from reduz/refactor-module-initializationRémi Verschelde2022-05-042-4/+13
|\
| * Refactor module initializationreduz2022-05-042-4/+13
| | | | | | | | | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* | Rename Basis "elements" to "rows"Aaron Franke2022-04-291-9/+9
|/
* String: Remove TTR and DTR defines in non-tools buildRémi Verschelde2022-03-281-14/+15
| | | | | This ensures we don't use TTR in runtime code, as it's specifically meant to source translations for the editor.
* Change some math macros to constexprkobewi2022-03-091-2/+2
| | | | Changes `MAX`, `MIN`, `ABS`, `CLAMP` and `SIGN`.
* Add a UniformSet cachereduz2022-03-061-34/+34
| | | | | | | * Changed syntax usage for RD::Uniform to create faster with a single RID * Converted render pass setup to use this in clustered renderer to test. This is the first step into creating a proper uniform set cache system to simplify large parts of the codebase.
* RendererRD: Remove binding specifier for push constantsRémi Verschelde2022-02-113-5/+5
| | | | | | | This is unsupported and glslang made it raise an error in 11.7.0: https://github.com/KhronosGroup/glslang/pull/2810 Co-authored-by: Clay John <claynjohn@gmail.com>
* Use fill() to fill an entire image instead of setting pixels individually.Anilforextra2022-01-081-5/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-034-8/+8
| | | | Happy new year to the wonderful Godot community!
* GPULightmapper: better algorithm to generate rays for indirect lightingWilliam Deurwaarder2021-11-191-12/+34
| | | | | | | Previous algorithm used an algorithm to generate rays that was not completely random. This caused artifacts when large lighmap textures were used. The new algorithm creates better rays and by that prevents artifacts.
* clang-format: Disable alignment of operands, too unreliableRémi Verschelde2021-10-281-7/+7
| | | | | | | | | 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`.
* GPULightmapper: execute dilate also after denoiseWilliam Deurwaarder2021-10-161-0/+8
| | | | | | Dilate fills gaps that are caused by the rasterization. As dilate is based on the alpha-channel which is not part of denoise, dilate can be run after denoise as well. So that colors are not denoised/mixed over seams.
* GPULightmapper: execute dilate before denoiseWilliam Deurwaarder2021-10-162-60/+67
| | | | | | | | | Dilate fills gaps that are caused by the rasterization. Previously denoise was done before dilate which caused the gaps to become filled (non-zero). This resulted that the gaps were not recognized by dilate and the background color leaked. This is fixed by executing dilate before denoise.
* GPULightmapper: increase ray triangle hit rateWilliam Deurwaarder2021-10-151-1/+2
| | | | | | | | Currently the method ray_hits_triangle determines triangles not to be hit by a ray due to an epsilon that is too big. In practice those triangles are hit by those rays. This is fixed by introducing a smaller epsilon.
* Merge pull request #53744 from williamd67/GPULightmapper-prevent-endless-loopRémi Verschelde2021-10-131-1/+1
|\
| * GPULightmapper: prevent loop with max iterationsWilliam Deurwaarder2021-10-121-1/+1
| | | | | | | | | | | | | | | | | | | | In case the calculation of the delta contained infinity values (division by zero), than later the calculation of the next cell failed as the infinity value was multiplied by zero which resulted in a nan. The nan-value caused that the next cell was equal to the current cell which resulted in an end-less loop, which only terminates by the maximum iterations protection. This is solved by replacing infinity with grid_size which acts as infinity.
* | Merge pull request #53743 from williamd67/GPULightmapper-process-rays-to-skyRémi Verschelde2021-10-131-10/+12
|\ \
| * | GPULightmapper: process rays to sky in all bounces as activeWilliam Deurwaarder2021-10-121-10/+12
| |/ | | | | | | | | | | | | | | Before this change only rays to the sky (RAY_MISS) in the first bounce were processed as active rays. This caused artifacts, areas were too light, when more than one bounce were processed. Now rays to the sky are processed as active rays for all bounces.
* / GPULightmapper: skip smoothen positions for flat trianglesWilliam Deurwaarder2021-10-122-1/+15
|/ | | | | | | | | | Smoothening positions for flat, non-smoothened, triangles is unnecessary and caused positions to move outside their triangle which caused side-effects as rays from those positions intersected with triangles which could not be reached from the original triangle. This is solved by skipping smoothening of positions for flat triangles. A triangle is determined to be flas as its vertex normals are equal.
* GPULightmapper exclude back-face triangles while calculating bouncesWilliam Deurwaarder2021-09-141-36/+37
| | | | | | | | Edges that are at the edge of a plane, may get behind the scene and will hit back-face triangles which where included in the lighting calculations. This caused leaking of light at the edge of planes. In case a ray hits back-face triangle, it is skipped in the bounce calculations.
* GPULightmapper's triangles and their bounding box will be in-syncWilliam Deurwaarder2021-09-115-64/+41
| | | | | | | | | | Previously the bounding boxes and triangles were maintained in two separate arrays (Vectors). As the triangle vector was sorted and the bounding-box array was not , the order of both arrays differed. This meant that the index in one was different than the other, which caused lookup issues. To prevent this, the bounding-box is now part of the triangle structure so that there is a single structure that cannot become out-of-sync anymore.
* Implement Binary Shader Compilationreduz2021-07-261-8/+8
| | | | | | | | | | * Added an extra stage before compiling shader, which is generating a binary blob. * On Vulkan, this allows caching the SPIRV reflection information, which is expensive to parse. * On other (future) RenderingDevices, it allows caching converted binary data, such as DXIL or MSL. This PR makes the shader cache include the reflection information, hence editor startup times are significantly improved. I tested this well and it appears to work, and I added a lot of consistency checks, but because it includes writing and reading binary information, rare bugs may pop up, so be aware. There was not much of a choice for storing the reflection information, given shaders can be a lot, take a lot of space and take time to parse.
* Implement the ability to disable classesreduz2021-07-131-1/+1
| | | | | | | * This PR adds the ability to disable classes when building. * For now it's only possible to do this via command like: `scons disable_classes=RayCast2D,Area3D` * Eventually, a proper UI will be implemented to create a build config file to do this at large scale, as well as detect what is used in the project.
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-17/+17
|
* Assorted fixes to UV unwrapping and GPU lightmapperjfons2021-05-034-62/+54
| | | | | | | | | | | | | | | | | | | | Various fixes to UV2 unwrapping and the GPU lightmapper. Listed here for context in case of git blame/bisect: * Fix UV2 unwrapping on import, also cleaned up the unwrap cache code. * Fix saving of RGBA images in EXR format. * Fixes to the GPU lightmapper: - Added padding between atlas elements, avoids bleeding. - Remove old SDF generation code. - Fix baked attenuation for Omni/Spot lights. - Fix baking of material properties onto UV2 (wireframe was wrongly used before). - Disable statically baked lights for objects that have a lightmap texture to avoid applying the same light twice. - Fix lightmap pairing in RendererSceneCull. - Fix UV2 array generated from `RenderingServer::mesh_surface_get_arrays()`. - Port autoexposure fix for OIDN from 3.x. - Save debug textures as EXR when using floating point format.
* Core: Drop custom `copymem`/`zeromem` definesRémi Verschelde2021-04-271-4/+4
| | | | | | | | We've been using standard C library functions `memcpy`/`memset` for these since 2016 with 67f65f66391327b2967a20a89c3627e1dd6e84eb. There was still the possibility for third-party platform ports to override the definitions with a custom header, but this doesn't seem useful anymore.
* Refactor GLSL shader compilationreduz2021-04-143-5/+5
| | | | | | | | -Used a more consistent set of keywords for the shader -Remove all harcoded entry points -Re-wrote the GLSL shader parser, new system is more flexible. Allows any entry point organization. -Entry point for sky shaders is now sky(). -Entry point for particle shaders is now process().
* Reorganize Project Settingsreduz2021-02-182-22/+22
| | | | | | | -Advanced Settings toggle also hides advanced properties when disabled -Simplified Advanced Bar (errors were just plain redundant) -Reorganized rendering quality settings. -Reorganized miscelaneous settings for clean up.
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-51/+51
|
* Invert spotlight angle attenuationjfons2021-02-074-10/+13
| | | | | | | | | | Inverted the spotlight angle attenuation so a higher value results in a dimmer light, this makes it more consistent with the distance attenuation. Also changed the way spotlighs are computed in SDFGI and GIPorbes and GPU lightmapper, now it matches the falloff used in the scene rendering code.
* Reorganize RenderingDevice barriersreduz2021-01-261-2/+2
| | | | | | | -Removed sync to draw, now everything syncs to draw by default. -Fixed many validation layer errors. -Added support for VkImageViewUsageCreateInfo to fix validation layer warnings. -Texture, buffer, raster and compute functions now all allow spcifying which barriers will be used.
* Change the light attenuation formulas.reduz2021-01-051-1/+10
| | | | | -Much better looking, physically based. -Almost negligible extra cost.
* Update copyright statements to 2021Rémi Verschelde2021-01-014-8/+8
| | | | | | | | | | | | | | 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 🎆
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-2/+2
|
* Static analyzer fixes:bruvzg2020-12-091-1/+0
| | | | | | Removes unused code in OS. Fixes return types. Fixes few typos.
* Rename RD texture "type" to "texture_type"Aaron Franke2020-12-041-3/+3
| | | "type" isn't very descriptive for exposed code, and this variable is exposed via RD_SETGET.
* Rename RD uniform "type" to "uniform_type"Aaron Franke2020-12-041-34/+34
| | | "type" isn't very descriptive for exposed code, and this variable is exposed via RD_SETGET.