Revision 96d20fe by Sergey Sharybin September 11, 2012, 07:56 (GMT) |
Color Management: added check for invertibility of color spaces So now non-invertible color spaces can not be used as input color space for images and as working color space for sequencer. Currently have got two hard-coded families which are rrt and display. If color space belong to one of this families, it would be considered as non-invertible. Data color spaces are always considered invertible. If color space has got to_reference transformation, it'll be considered invertible. |
Revision 39231c9 by Campbell Barton September 11, 2012, 06:12 (GMT) |
fix [#31738] BM_vert_splice modifies loops during iteration patch by Nicholas Bishop, modified to avoid looping over vert-loops one extra time. added BM_iter_as_arrayN(), returns an iterator as an array without knowing the length before calling. |
Revision 2f43661 by Campbell Barton September 11, 2012, 05:27 (GMT) |
replace BM_vert_face_count() use of BM_LOOPS_OF_VERT iterator with a direct call to bmesh_disk_facevert_count() |
Revision a0ae47f by Campbell Barton September 11, 2012, 02:18 (GMT) |
add some missing NULL checks, a few parts of the code used a pointer then checked it for NULL after. also made it more clear that some areas assume the pointer isnt null (remove redundant NULL checks). |
Revision 652f647 by Campbell Barton September 11, 2012, 01:30 (GMT) |
fix [#32531] Texturepainting always uses smooth shaded normals |
Revision dfb7885 by Campbell Barton September 10, 2012, 23:36 (GMT) |
'new file' now runs bpy.app.handlers.load_pre/post callbacks. Without this - there wasnt a good way to ensure addons were aware of new data being loading in new files. requested by request by liquidape and maccuno. |
Revision cf5da37 by Campbell Barton September 10, 2012, 23:32 (GMT) |
fix for a bug running a script, then opening a new file. BPY_text_free_code() could run outside the python interpreter which abort()'s blender. |
Revision 16e48ff by Campbell Barton September 10, 2012, 22:43 (GMT) |
code cleanup: string c++ lib, defines for default string sizes and use m_ convention for member naming. |
Revision b4cac85 by Sergey Sharybin September 10, 2012, 17:38 (GMT) |
Color management: get rid of hardcoded color space None |
Revision 74885d1 by Sergey Sharybin September 10, 2012, 17:24 (GMT) |
Color Management: port image stamp to new color management system Use the same approach as interface does by using default view which is supposed to be invertible to convert color from display space to scene linear. |
Revision 3e88174 by Sergey Sharybin September 10, 2012, 16:30 (GMT) |
Color Management: resolve TODOs related on HSV widgets |
Revision ce3566a by Sergey Sharybin September 10, 2012, 14:47 (GMT) |
Color Management: add View as Render to image datablocks This is need since some images (like normal maps, textures and so) would want to be viewed without any tone map applied on them. On the same time it's possible that some images would want to be affected by tone maps, and renders would always want to be affected by tone maps. After long discussion with Brecht we decided less painful and most clear way would be to simply add "View as Render" option to image datablocks. If this option is enabled for image, both settings from Display and Render blocks of color management settings would be applied on display. If this option is disabled, only display transform with default view and no exposure/gamma/curves would be applied. Render result and compositor viewers would always have "View as Render" enabled. There's separated setting when image is saving which says whether saved image should be affected by render part of color management settings. This option is enabled by default for render result/node viewer and disabled by default for all the rest images. This option wouldn't have affect when saving to float formats such as EXR. |
Revision 4479440 by Brecht Van Lommel September 10, 2012, 14:00 (GMT) |
Fix #32529: after tomato merge, cycles multi GPU render not using all GPUs with F12 rendering. |
Revision bb3b3ab by Brecht Van Lommel September 10, 2012, 14:00 (GMT) |
Fix #32530: animation playback did not respect preview frame range if the current frame was before the start frame. |
Revision b0605ee by Sergey Sharybin September 10, 2012, 11:46 (GMT) |
Color Management: finish pipeline changes This commit hopefully finishes color management pipeline changes, implements some missed functionality and fixes some bugs. Mainly changes are related on getting rid of old Color Management flag which became counter-intuitive in conjunction with OpenColorIO. Now color management is always assuming to be enabled and non-color managed pipeline is emulated using display device called None. This display has got single view which is basically NO-OP (raw) transformation, not applying any tone curve and displays colors AS-IS. In most cases it behaves the same as disabling Color Management in shading panel, but there is at least one known difference in behavior: compositor and sequence editors would output images in linear space, not in sRGB as it used to be before. It'll be quite tricky to make this behave in exactly the same way as it used to, and not sure if we really need to do it. 3D viewport is supposed to be working in sRGB space, no tonemaps would be applied there. This is another case where compatibility breaks in comparison with old color management pipeline, but supporting display transformation would be tricky since it'll also be needed to make GLSL shaders, textures and so be aware of display transform. Interface is now aware of display transformation, but it only uses default display view, no exposure, gamma or curve mapping is supported there. This is so color widgets could apply display transformation in both directions. Such behavior is a bit counter-intuitive, but it's currently the only way to make color picking working smoothly. In theory we'll need to support color picking color space, but it'll be also a bit tricky since in Blender display transform is configurable from the interface and could be used for artistics needs and in such design it's not possible to figure out invertable color space which could be used for color picking. In other software it's not so big issue since all color spaces, display transform and so are strictly defined by pipeline and in this case it is possible to define color picking space which would be close enough to display space. Sequencer's color space now could be configured from the interface -- it's settings are situated in Scene buttons, Color Management panel. Default space is sRGB. It was made configurable because we used vd16 color space during Mango which was close to Film view used by grading department. Sequencer will convert float buffers to this color space before operating with them hopefully giving better results. Byte buffers wouldn't be converted to this color space an they'll be handled in their own colors[ace. Converting them to sequencer's working space would lead to precision loss without much visible benefits. It shouldn't be an issue since float and byte images would never be blended together -- byte image would be converted to float first if it's needed to be blended with float image. Byte buffers now allowed to be color managed. This was needed to make code in such areas as baking and rendering don't have hardcoded linear to sRGB conversions, making things more clear from code point of view. Input color space is now assigning on image/movie clip load and default roles are used for this. So for float images default space would be rec709 and for byte images default space would be sRGB. Added Non-Color color space which is aimed to be used for such things as normal/heights maps. It's currently the same as raw colorspace, just has got more clear naming for users. Probably we'll also need to make it not affected by display transformation. Think this is all main pipeline-related changes, more details would be there: http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management Other changes and fixes: - Lots of internal code clean up in color management module. - Made OpenColorIO module using guarded memory allocation. This allowed to fix couple of memory leaks and would help preventing leaks in the future. - Made sure color unpremultiply and dither are supported by all OpenColorIO defined color transformations. - Made compositor's preview images be aware of display transformation. Legacy compositor still uses old Color Management flags, but likely we'll disable compositor for the release and remove legacy code soon, so don't think we'll need to spend time on porting that code to new color management system. - Made OpenGL rendering be aware of display transform when saving render result. Now it behaves in the same way as regular rendering. TODO: - HSV widgets are using linear rgb/sRGB conversions for single channel, not sure how this should be ported to new color pipeline. - Image stamp would use hardcoded linear rgb to sRGB conversion for filling rectangles. Probably it should use default display view for this instead, would check this with Brecht. - Get rid of None color space which was only used for compatibility reasons. - Made it more clear which color spaces could be used as input space. - There're also some remained TODO's in the code marked as OCIO_TODO, but wouldn't consider them as stoppers for at least this commit. |
Revision 832841d by Sergey Sharybin September 10, 2012, 10:58 (GMT) |
Revision c276ef6a by Campbell Barton September 10, 2012, 10:50 (GMT) |
change to auto-opening menus so the first menu item in popup menu wont auto open. This way we can do predictable key-shortcut-chaining. Eg. Shift+A, M, O --- adds a metaball cone. In editmode Ctrl+V, X, A --- Assign new vertex group. |
Revision f7a5569 by Lukas Toenne September 10, 2012, 08:38 (GMT) |
OSL cmake cleanup: * Removed unused lib and include directories (also one bad 'src' include that wouldn't work anyway) * Copied cmake library finding to APPLE and WIN32 sections. These may need some adjustment for their respective OS. |
Revision ccaf475 by Campbell Barton September 10, 2012, 07:03 (GMT) |
code cleanup: use typedef'd enum for block bounds types. |
Revision b1ff565 by Campbell Barton September 10, 2012, 06:44 (GMT) |
make alphanumeric key shortcuts work for submenu's so you can chain keys together to select items in a menu. eg: 'Ctrl+V, E, S' for - Vertex, Separate, Selection |
|
|
|


Master Commits
MiikaHweb | 2003-2021