[Bf-blender-cvs] CVS commit: blender/source/blender/blenkernel BKE_colortools.h blender/source/blender/blenkernel/intern colortools.c blender/source/blender/blenloader/intern readfile.c writefile.c blender/source/blender/include BIF_editsima.h BIF_space.h blendef.h blender/source/blender/makesdna ...

Ton Roosendaal ton at blender.org
Tue Jan 10 00:52:51 CET 2006


ton (Ton Roosendaal) 2006/01/10 00:52:51 CET

  Modified files:        (Branch: orange)
    blender/source/blender/blenkernel BKE_colortools.h 
    blender/source/blender/blenkernel/intern colortools.c 
    blender/source/blender/blenloader/intern readfile.c 
                                             writefile.c 
    blender/source/blender/include BIF_editsima.h BIF_space.h 
                                   blendef.h 
    blender/source/blender/makesdna DNA_color_types.h 
                                    DNA_space_types.h 
    blender/source/blender/src butspace.c drawimage.c editsima.c 
                               header_image.c space.c 
  
  Log:
  Orange: and now for the real exr fun: float buffer support in Image window!
  
  Image as loaded in Blender (from openexr.com):
  http://www.blender.org/bf/exrcurve1.jpg
  
  Image with different white point:
  http://www.blender.org/bf/exrcurve2.jpg
  
  Image with white and black point and a curve:
  http://www.blender.org/bf/exrcurve3.jpg
  
  Use SHIFT+click to set the black point, and CTRL+click for white point.
  The buttons in the panel work too, of course.
  
  The curves work after the black/white range was corrected, so you can
  stick to curves with a normal 0-1 range.
  There's also now a general color curve, marked with 'C' button.
  
  Note; this currently only maps the float colors to a visible 8 bits per
  channel rect. You can save it, but when the blender file loads the curve
  or mapping is not executed until you click in the curves... have to look
  at that still.
  Speed for this is also quite unoptimized... still WIP, but fun!
  
  Revision  Changes    Path
  1.1.2.2   +4 -1      blender/source/blender/blenkernel/Attic/BKE_colortools.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/Attic/BKE_colortools.h.diff?r1=1.1.2.1&r2=1.1.2.2&cvsroot=bf-blender>
  1.1.2.2   +61 -4     blender/source/blender/blenkernel/intern/Attic/colortools.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenkernel/intern/Attic/colortools.c.diff?r1=1.1.2.1&r2=1.1.2.2&cvsroot=bf-blender>
  1.214.2.33 +7 -0      blender/source/blender/blenloader/intern/readfile.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenloader/intern/readfile.c.diff?r1=1.214.2.32&r2=1.214.2.33&cvsroot=bf-blender>
  1.60.2.9  +4 -0      blender/source/blender/blenloader/intern/writefile.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/blenloader/intern/writefile.c.diff?r1=1.60.2.8&r2=1.60.2.9&cvsroot=bf-blender>
  1.16.2.1  +3 -1      blender/source/blender/include/BIF_editsima.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/include/BIF_editsima.h.diff?r1=1.16.2.0&r2=1.16.2.1&cvsroot=bf-blender>
  1.34.2.3  +2 -1      blender/source/blender/include/BIF_space.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/include/BIF_space.h.diff?r1=1.34.2.2&r2=1.34.2.3&cvsroot=bf-blender>
  1.48.2.5  +2 -0      blender/source/blender/include/blendef.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/include/blendef.h.diff?r1=1.48.2.4&r2=1.48.2.5&cvsroot=bf-blender>
  1.1.2.2   +3 -1      blender/source/blender/makesdna/Attic/DNA_color_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/makesdna/Attic/DNA_color_types.h.diff?r1=1.1.2.1&r2=1.1.2.2&cvsroot=bf-blender>
  1.38.2.8  +1 -0      blender/source/blender/makesdna/DNA_space_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/makesdna/DNA_space_types.h.diff?r1=1.38.2.7&r2=1.38.2.8&cvsroot=bf-blender>
  1.41.2.5  +23 -20    blender/source/blender/src/butspace.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/butspace.c.diff?r1=1.41.2.4&r2=1.41.2.5&cvsroot=bf-blender>
  1.47.2.5  +58 -2     blender/source/blender/src/drawimage.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/drawimage.c.diff?r1=1.47.2.4&r2=1.47.2.5&cvsroot=bf-blender>
  1.45.2.1  +49 -1     blender/source/blender/src/editsima.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/editsima.c.diff?r1=1.45.2.0&r2=1.45.2.1&cvsroot=bf-blender>
  1.48.2.5  +6 -2      blender/source/blender/src/header_image.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/header_image.c.diff?r1=1.48.2.4&r2=1.48.2.5&cvsroot=bf-blender>
  1.317.2.17 +22 -5     blender/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/space.c.diff?r1=1.317.2.16&r2=1.317.2.17&cvsroot=bf-blender>



More information about the Bf-blender-cvs mailing list