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
2015-01-12Fix typo in OCIO configuration fileSebastian Koenig
2014-05-23Spelling fixSergey Sharybin
2013-09-09Film response looks:Brecht Van Lommel
* Reorder list a bit to put brands together * Move looks menu below views * Rename camera_response to film_response folder, to make clear that these are photographic film types, not camera models
2013-09-09Film response curves implemented as a looksSergey Sharybin
This commit implement's OCIO's Looks idea which is about applying some color correction on the buffer before it get's affected by a display transform. This is mainly used to modify images in an artistics way. Currently we've got looks generated from film response curves for all sorts of cameras. Patch by both of me and Brecht.
2013-04-29Tweak allocation vars for XYZ space for more accurate GPU transformSergey Sharybin
Also extend 3DLUT edge size to 64 (1 meg of memory) to increase transform accuracy as well.
2013-04-26Fixes for color management:Sergey Sharybin
- Sequencer preview was clamping float buffers - ACES color space wasn't correct, was noticeable when applying display processor from linear space to display. - Extended sRGB LUT to sRGBf from nuke-default config. Makes sequencer behave much better in sRGB space.
2013-04-02Tweak allocation vars for linear space so black is convertedSergey Sharybin
to black when using GLSL display transform.
2012-09-25Fix for last color management commit, wrongly assumed aces_to_rec709.spimtx ↵Brecht Van Lommel
was in svn.
2012-09-25Color management: change reference space from Linear ACES to Linear. This willBrecht Van Lommel
have no effect on the end result, because it is only an intermediate space and scene_linear was already set to Linear. It does avoid some unnecessary matrix transforms which should be a bit faster, and it makes it more clear what's happening.
2012-09-25Color Management: wrong register was used for color space for None displaySergey Sharybin
2012-09-15Color Management, Stage 1: Initial OpenColorIO library integrationSergey Sharybin
This commit integrates support of OpenColorIO library into build systems. It also contains C-API for OpenColorIO library which could be used by Blender. CMake has got find rules familiar to OpenImageIO's one which makes it easier for build system to find needed libraries and includes. Scons only could use explicitly defined paths to libraries and includes. C-API would be compiled and Blender would be linked against C-API and OpenColorIO but it wouldn't affect on Blender behavior at all. OpenColorIO could be disabled by setting up WITH_OCIO to Off in CMake and setting WITH_BF_OCIO in Scons.