Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-14Cleanup: EEVEE: Replace `brightness()` by `max_v3()`Clément Foucault
It is more straightforward to understand and is define in common file.
2019-06-12Cleanup: spelling in commentsCampbell Barton
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-03-19Cleanup: comment blocksCampbell Barton
2018-04-22Cleanup: trailing spacesCampbell Barton
Applied to newly added files in 2.8
2017-08-11Eevee: SSR Clamp color when blurring buffers.Clément Foucault
This effectivly reduce firefly bleeding all over the place. We still need the clamp in the resolve pass because the level 0 has not been clamped. NOTE: I did not clamped each sample individually for performance BUT I did not profile it to know how much it cost.
2017-08-10Eevee: SSR: Blur Mipmaps more.Clément Foucault
Cost is negligeable (Only 0.02 ms more) and it improve stability.
2017-07-25Eevee: SSR: Add support for planar probes.Clément Foucault
This add the possibility to use planar probe informations to create SSR. This has 2 advantages: - Tracing is less expensive since the hit is found much quicker. - We have much less artifact due to missing information. There is still area for improvement.
2017-06-26Eevee: Add Planar reflection blurring.Clément Foucault
This method is very cheap and inaccurate. This will fill the gap untill better model is supported.