[tuhopuu-cvs] CVS commit: tuhopuu3/projectfiles/blender/src BL_src.dsp tuhopuu3/projectfiles/blender blender.dsp tuhopuu3/source/blender/include BSE_trans_types.h tuhopuu3/source/blender/src imagepaint.c drawimage.c header_image.c SConscript space.c vpaint.c ...

Jens Ole Wund (bjornmose) bjornmose at gmx.net
Thu Jan 20 23:01:28 CET 2005


bjornmose (Jens Ole Wund(bjornmose)) 2005/01/20 23:01:28 CET

  Modified files:
    tuhopuu3/projectfiles/blender/src BL_src.dsp 
    tuhopuu3/projectfiles/blender blender.dsp 
    tuhopuu3/source/blender/include BSE_trans_types.h 
    tuhopuu3/source/blender/src drawimage.c header_image.c 
                                SConscript space.c vpaint.c 
    tuhopuu3/source/blender/img/intern IMG_Api.cpp 
                                       IMG_CanvasRGBA32.cpp 
                                       IMG_CanvasRGBA32.h 
                                       IMG_PixmapRGBA32.cpp 
                                       IMG_PixmapRGBA32.h 
    tuhopuu3/source/blender/img IMG_Api.h 
  Added files:
    tuhopuu3/source/blender/src imagepaint.c 
  
  Log:
  OK another big one
  All about 2d painting in 'image editor'
  
  most of the work was done in tuhopuu2 and i don't want to loose it
  see http://home.t-online.de/home/wund.five/tuhopuu_devel/news/
  
  finally i took my heart in the hands and made the move:
  ripping 2d drawing control out of space.c SIC!
  
  so code in space.c reduces to :
  	if (sima->flag & SI_DRAWTOOL) {		/* Draw tool is active */
  		UVTexturePaintMsg(spacedata,event,val);
  	}
  	else {
  		/* Draw tool is inactive */
  		texturepaintoff();
  
  most of the "#ifdef NAN_TPT" stuff should be gone then
  
  moving it to the new file imagepaint.c
  humm.. i did care for SCONS and MSVC6 projects ( the ones avialable for me right now )
  so MAKEFILES + MSVC7 projects need to add imagepaint.c to SRC
  
  ole
  
  Revision  Changes    Path
  1.3       +4 -0      tuhopuu3/projectfiles/blender/src/BL_src.dsp
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/projectfiles/blender/src/BL_src.dsp.diff?r1=1.2&r2=1.3&cvsroot=tuhopuu>
  1.2       +9 -9      tuhopuu3/projectfiles/blender/blender.dsp
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/projectfiles/blender/blender.dsp.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +9 -1      tuhopuu3/source/blender/include/BSE_trans_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/include/BSE_trans_types.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.7       +212 -5    tuhopuu3/source/blender/src/drawimage.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/drawimage.c.diff?r1=1.6&r2=1.7&cvsroot=tuhopuu>
  1.8       +53 -1     tuhopuu3/source/blender/src/header_image.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/header_image.c.diff?r1=1.7&r2=1.8&cvsroot=tuhopuu>
  1.3       +1 -0      tuhopuu3/source/blender/src/SConscript
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/SConscript.diff?r1=1.2&r2=1.3&cvsroot=tuhopuu>
  1.20      +10 -68    tuhopuu3/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/space.c.diff?r1=1.19&r2=1.20&cvsroot=tuhopuu>
  1.2       +18 -1     tuhopuu3/source/blender/src/vpaint.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/vpaint.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +43 -1     tuhopuu3/source/blender/img/intern/IMG_Api.cpp
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/intern/IMG_Api.cpp.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +237 -1    tuhopuu3/source/blender/img/intern/IMG_CanvasRGBA32.cpp
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/intern/IMG_CanvasRGBA32.cpp.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +6 -1      tuhopuu3/source/blender/img/intern/IMG_CanvasRGBA32.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/intern/IMG_CanvasRGBA32.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +34 -1     tuhopuu3/source/blender/img/intern/IMG_PixmapRGBA32.cpp
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/intern/IMG_PixmapRGBA32.cpp.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +3 -1      tuhopuu3/source/blender/img/intern/IMG_PixmapRGBA32.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/intern/IMG_PixmapRGBA32.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +6 -1      tuhopuu3/source/blender/img/IMG_Api.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/img/IMG_Api.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>



More information about the tuhopuu-cvs mailing list