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
2008-01-29Handle OpenEXR exception and print it, for writeTile. It's sometimesBrecht Van Lommel
crashing there now with FSA, if it crashes again this should give more info.
2008-01-20== Sequencer / FFMPEG ==Peter Schlaile
This fixes: [#7989] Sequence editor preview and anim render output broken on Linux PPC and also optimizes RGBA -> ABGR conversion function a little bit. (Fixing also a crash, if there is no ibuf->rect available...)
2008-01-19Added new render pass: "Mist".Ton Roosendaal
This is actually just the alpha value as currently being calculated by the mist code. It is in many cases not very useful to have this as alpha in shading result, also for postprocess and composite. Note: this pass also works with "Mist" not set in World, of course.
2008-01-15changed sqrtf to sqrt to make solaris and other platforms happy.Kent Mein
Kent
2008-01-01== Sequencer ==Peter Schlaile
Attention! Rather large sequencer rewrite: * Implemented layer blending using implicit effects. (works like layers in "The Gimp" or Photoshop.) * Fixed Space-Bar start-stop in preview windows. You can start playback using spacebar within a preview-window and it _works_! * Fixed Flip Y (didn't work for float) * Fixed premul (didn't work for float) * Added IPOs to _all_ tracks. In blend-mode REPLACE it drives the "mul"-parameter in all other blend modes it drives the effect. * you can meta single tracks. * moved "mute track" from "M" to "Shift-M" * added "Shift-L" for "lock track" * changed inner workings for Metas. Now all ImBufs have to use the reference counting mechanism. (Only interesting for coders :) !!! Really important change, that affects current files! Since you can mute tracks and now there is real layer blending capabilities in place, I changed the silly behaviour that chose the output track. Old behaviour: if we have an effect track visible, use the uppermost effect track. If there is _no_ effect track visible, use the lowest input track. New behaviour: always use the uppermost track. With blend modes active: work our way down starting from the uppermost track to the first "replace"-mode track. This is the way the gimp, photoshop, basically _all_ other applications work... So if this change ruins your day: please try to fix your files using "mute". If this doesn't work out, I can still restore the old behaviour, but I really hope, that this is _not_ necessary! Rational: most people won't get affected by this change, since you can't really do anything usefull with the (old) sequencer without at least one effect track and then you are on the safe side...
2007-12-29* Displacement map bakingMatt Ebb
This is an extension on the work Brecht already did to implement normal map baking. I've updated the release notes page here with info and pics: http://www.blender.org/development/current-projects/changes-since-244/render-baking/
2007-12-27This is patch: [#7975] imbuf for DDS textures: improved read support and a ↵Kent Mein
few bugs fixed Kent Notes From the author: The attached patch syncs the DDS code in Blender with the latest revision (324) of the nvidia texture tools. This fixes a few minor issues and adds support for a more types of DDS textures, in particular uncompressed textures that don't have the standard 16, 24, or 32 bits per pixel. Note: I have started using the nvidia texture tools convention for naming integer types (uint, uint16, uint8, uint64 etc.) because doing so makes it much easier to merge patches from upstream. Since the code is compiled separately from the rest of Blender, this likely does not pose a problem. However, if there turns out to be a good reason for avoiding those nvidia type names from upstream, I'd be happy to fix it. Regards, Amorilia
2007-12-26== MSVC 7.1 projectfiles ==Andrea Weikert
- added missing files to projectfiles - cleaned up thumbnail creation to avoid dependency on BKE_
2007-12-25== Sequencer ==Peter Schlaile
* Make Lock flag work for metastrips * Fixes: flags are cleared on exit of metastrips * Fixes (hopefully): red picture on big endian
2007-12-23== FFMPEG ==Peter Schlaile
Fixes [#7475] no video as background libswscale sets the alpha channel to 0 by default... grmbl. Added a workaround. Big endian users please complain, if it doesn't work.
2007-12-20== Imbuf ==Peter Schlaile
The TIFF reader did error handling with assert which is a pretty bad idea (tm). This fixes the assert-crash, that the TIFF reader triggers, if one tries to open a RAW-DV file within the compositor. (File extension is only two characters long, which is enough for an assert... EVEN IF IT ISN'T A TIFF FILE, WE ARE GOING TO OPEN. GRMBL) Removed all other assertions and added proper error handling. (using STDERR, where it belongs.)
2007-12-19Add support for stampinfo to the JPEG format.Diego Borghetti
This is the review of the patch: [#5485] Invisibly stamp render information into jpg and png files. by Rob Hausauer (paprmh) NOTE: I split this patch in 3 part: 1) jpeg support 2) python api 3) sequence plugin This is the first part, hope finish with the other two tomorrow night.
2007-10-29Routine purge of compiler warnings. Yet again, they were mostly ↵Joshua Leung
uninitialised vars.
2007-10-29render stamp drawing is now done everywhere - (not just when saving Campbell Barton
images) separated stamp metadata and stamp draw functions.
2007-10-26nodes from eechloCampbell Barton
* glare * tonemap * lense distort * fast gauss blur http://projects.blender.org/tracker/?func=detail&atid=127&aid=7505&group_id=9 made fast gauss blur an option for the blur node rather then a separate node.
2007-10-24Patch by GSR #7628, I also added alpha for text background.Campbell Barton
The list of changes (some are fixes): - Properly horizontally centered tags in all fields (bug?). - File area does not have trailing space and has leading "File " at start instead (probably a bug). - Small separation between to time related fields, space saving. - Removed colons, for consistency and space saving again. - Frame field is zero aligned for higher visual stability. - Marker name shows a rarer name, "<none>" (using <> is typical for cases in which there is nothing: <none>, <empty>, <blank>, etc). - Top area for misc info that can be really long (file, note and render date). - Bottom area for more constantly changing but short ones (marker, SMPTE, frame, camera and scene). - Only render date moves a line (when note field is not used), and frame one moves if no SMPTE (still in same line, so no big jump), for extra visual stability (marker is fixed, assuming most people would show frame and or SMPTE). - ISO 8601 date format for render date, localization independant. Comparision images: http://www.infernal-iceberg.com/blender/stamp-original.png http://www.infernal-iceberg.com/blender/stamp-cleanup.png
2007-10-20Image Stamping patch by Diego (and peach request)- stamps image info into ↵Campbell Barton
metadata and optionally draws into the frame. This patch includes some changes I made... * use blenders bitmap fonts (rather then own fonts) * select font size * user interface layout changes * Marker as another image stamp option Also added some new API calls BMF_GetFontHeight(font); BMF_DrawStringBuf(...); - so we can draw text into an imbuf's image buffer. get_frame_marker(frame) - get the last marker from the frame. IMB_rectfill_area(...) - fill in an image buffer with a rectangle area of color. TODO - draw stamp info in 3d view, at the moment it just displays in the animation.
2007-10-12This is patch [#7483] imbuf support for uncompressed DDS imagesKent Mein
provided by Amorilia NVIDIA updated the dds stuff so we get a nice new patch. Kent
2007-10-12== IMBuf fix ==Peter Schlaile
Fixed Campbell's patch for IMB_flipx: - header file declaration is corrected - reordered loops to make things faster (less cache misses and no tests for float-buffers on a _per pixel basis_!) (Campbell: it'd be nice, if you could check with me before patching the sequencer. Or at least pay attention to compiler warnings :) )
2007-10-11Peach requestCampbell Barton
new option for the image sequencer's image strips, flip x/y, (useful when making animatics to test the direction characters walk across the screen) added IMB_flipy was alredy there, needed to add IMB_flipx.
2007-10-08This is a fix for the following bug:Kent Mein
7096 bitfields not c++ standard compliant, can't compile using sun CC Kent
2007-09-23== Sequencer / FFMPEG ==Peter Schlaile
Confused RGBA32 with RGBA.
2007-09-23== Sequencer / FFMPEG ==Peter Schlaile
Updated FFMPEG to latest version. Since we now use swscaler, things should be a lot faster! Please check on Big-Endian, if this still works!
2007-09-23fixing some compile problems with MSVC7.1/sconsAndrea Weikert
* stupid misplacement of declaration * replacing fmodf with fmod (fmodf not available with MSVC7.1 when compiling C-code) * appending CXXFLAGS to CCFLAGS in tools/Blender.py to avoid linking errors with runtime library (/MT not set) - jesterKing, could you please check if that's ok?
2007-09-18Another purge of compiler warnings (some of which I've been getting for a ↵Joshua Leung
while) as a warmup exercise.
2007-09-17fix compile on not-windows platforms, accidentally removed declaration Andrea Weikert
in warning fix.
2007-09-17thumbs.c: warning fixesAndrea Weikert
filelist.c: warning fixes
2007-09-15== Sequencer ==Peter Schlaile
Bugfix for transform effect by Damiles. Fixes crash with float buffers. (Don't try to render into output buffers, that do not exist...)
2007-09-05fix svn properties for line endingsAndrea Weikert
fix a few no newlines at end of file warnings
2007-09-03more warning fixes.Stephen Swaney
sprinkle a few 'const char*'s around to remove warnings about discarding qualifiers in imbuf code.
2007-09-02== imagebrowser ==Andrea Weikert
fix for missing null pointer check in IMB_thumb_create. found by Diego Borghetti (bdiego) - thanks!
2007-09-02== imagebrowser ==Andrea Weikert
Initial commit of imagebrowser in trunk. BIG COMMIT! Main changes: * completely reworked imasel space * creation and storage of the preview images for materials, textures, world and lamp * thumbnails of images and movie files when browsing in the file system * loading previews from external .blend when linking or appending * thumbnail caching according to the Thumbnail Managing Standard: http://jens.triq.net/thumbnail-spec/ * for now just kept imasel access mostly as old imgbrowser (CTRL+F4, CTRL+F1) a bit hidden still. * filtering of file types (images, movies, .blend, py,...) * preliminary managing of bookmarks ('B' button to add, XKEY while bookmark active to delete) More detailed info which will be updated here: http://wiki.blender.org/index.php/User:Elubie/PreviewImageBrowser Places that need special review (and probably fixes): * BLO_blendhandle_get_previews in readblenentry * readfile.c: do_version and refactorings of do_library_append * UI integration TODO and known issues still: * Accented characters do not display correctly with international fonts * Crash was reported when browsing in directory with movie files * Bookmark management still needs some UI work (second scrollbar?), feedback here is welcome! Credits: Samir Bharadwaj (samirbharadwaj@yahoo.com) for the icon images. Many thanks to everyone who gave feedback and helped so far!
2007-09-02Bugfix #7125Ton Roosendaal
The conversion from float to char (byte) was not correct. It should include the possibility for colors like 0.999999 to become 255 still. The correct multiplication factor I don't know though... and this should become a system wide definition!
2007-08-31Updated the Makefiles removing some of the gcc specific stuff...Kent Mein
Basically I moved -funsigned-char -fno-strict-aliasing from individual Makefiles to nan_compile.mk defines for CFLAGS and CCFLAGS Kent
2007-07-10Removed comments with non ascii chars...Kent Mein
I left the link that points to documentation on the web so not really needed anyway. Kent
2007-07-10This is patch [#6929] Interpolation MethodsKent Mein
http://projects.blender.org/tracker/index.php?func=detail&aid=6929&group_id=9&atid=127 Its a subset of patch [#6766] Transform Sequencer effect It adds 3 image functions for different types of interpolation. For people that like pictures: http://wiki.blender.org/index.php/User:Damiles#Interpolations_Algorithms Patch provided by David Millán Escrivá (damiles) Kent
2007-06-26For scons: Add "-DWITH_DDS" to compile flags when dds is enabled.Ken Hughes
2007-06-25This commit is a modified version of patch #6860Kent Mein
It adds read only dds support. (Writing will come later) Kent
2007-05-30* Fix for #6707Nathan Letwory
This fix is windows specific. AVIs are now evaluated by the pre-FFMPEG code first, failing that only by FFMPEG. Adding the 200 frame testfile from the bugreport http://projects.blender.org/tracker/?func=detail&aid=6707&group_id=9&atid=125 now goes fine with Add>Movie. Add>Movie+Audio will complain about the fail first, but it will be added anyway.
2007-05-25* playback of image sequence now also for OpenEXR images (but not multilayer).Nathan Letwory
2007-05-25* fix for #6714Nathan Letwory
- don't handle images with ffmpeg, blender knows itself perfectly fine how to do that. This fix is done as per Qt handling (skip non-Qt files).
2007-04-04moved source and text to american spellingCampbell Barton
* colour -> color * centre -> center * normalise -> normalize * modelling -> modeling
2007-03-27=== OpenEXR ===Nathan Letwory
* fix [ #6105 ] Blender crashes when opening multilayer with node in compositor - Mem_IStream membuf was allocated on the stack, so it caused major troubles when out of the function scope. Now allocate it on the heap and let OpenEXR deal with freeing it. - moved + added delete file;'s for completeness
2007-03-17Fix various gcc warning, unused variables and incorrect type passed toKen Hughes
*printf functions.
2007-03-11Remove gcc compiler warnings from various files.Ken Hughes
2007-03-11=Cineon Bug= Joseph Eagar
In my attempts to get cinepaint's cineon code to work with files in memory, I accidently rewrote something that should have been left as it is. This causes images whose image buffers didn't start right after the cineon header to become "shifted" to the left. The DPX code looks correct, though.
2007-03-03==== MSVC 7.1 project files ====Andrea Weikert
- fix for 3DPlugin compile - cleanup of bullet path - removed PHY_ODE project from 3D plugin too, not used anymore Now all configurations should build again, let me know of any problems! Not been able to test if the 3DPlugin is actually working,is job for another day ;) Also the 3DPlugin is compiled without OpenExr, this needs to be looked into once too.
2007-02-15Bugfix (via email)Ton Roosendaal
Bake crashed when baking to float images. Caused by an Imbuf call not handling float imbufs well.
2007-01-24Bugfix #5818Ton Roosendaal
OpenEXR MultiLayer: line order DECREASING_Y (openexr spec) crashes newer openexr libs in windows... ??? Removed it, since tests reveiled the line order is still bottom-top
2007-01-22Paprmh's fix for the blur plugin.Kent Mein
Kent