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
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: Fix post process with Ugly color.Clément Foucault
This was cause by some post process not always sampling the highest mipmap. But if there is no need for mipmapping (i.e. no SSR) these levels will be undefined. So forcing all Post FX shader to sample level 0 fix this.
2017-07-24Eevee: SSR: Add mipmap filtering and bias to reduce noise.Clément Foucault
Also fix the roughness factors.