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
2012-08-18Suport function for Collada exporter: after a generated image was stored to ↵Gaia Clary
disk, the new filetype was not always recognized.
2012-08-14Fix for [#32320] "Image browser in UV/image Editor makes Blender crash at ↵Mitchell Stokes
exit when .dds image is loaded" reported by Christian Monfort (gulbroz), who also provided the patch to fix the problem. The problem was a double free with some dds buffer data.
2012-08-13code cleanup: includes for imbuf, also remove double promotion.Campbell Barton
2012-08-13fix [#32126] STAMP: Setting a background color causes color flickerCampbell Barton
when rendering the sequencer can output float or char buffers which stamp wasn't accounting for.
2012-08-13style cleanupCampbell Barton
2012-08-08Movie cache: add function to iterate through cache and remove itemsSergey Sharybin
using custom check function for this. Currently unused, but would be helpful for sequencer cache.
2012-08-08Fix logic error in mipmap filter and refactor scaling routine to lower self ↵Sv. Lockal
cost by ~30%
2012-08-07Made image buffer threaded processor generic function,Sergey Sharybin
so color management could use the same routines. Should be no functional changes.
2012-08-04style cleanupCampbell Barton
2012-08-02code cleanup: remove redundant float castsCampbell Barton
2012-08-02improve not very helpful error message.Campbell Barton
2012-07-29code cleanup: replace MIN2/MAX2 with minf/maxfCampbell Barton
2012-07-27Move sRGB conversion initialization to init_exit routinesSergey Sharybin
It was a threading issue in color management project which potentially could happen in trunk as well.
2012-07-26Fix [#31609] save .EXR defaults to uncompressed, causes segfault.Sv. Lockal
IMB_filterN now generates 32-bit int representation of float images for mipmap generation if such representation does not exist.
2012-07-17code cleanup: spellingCampbell Barton
2012-07-10Make grumpy gcc in "overwarning" mode happy again...Bastien Montagne
2012-07-10Improved cache management for movie clips from tomato branchSergey Sharybin
Replace pseudo-LRU approach of determining which buffer to remove when running out of space allowed for cache with approach which would remove the frame which is most far away from newly added frame. This is still a bit tricky because it's impossible to distinguish which frame to delete in situation of: CCCC...CC ^ it's either user wants to extend left segment of cached frames and buffers from right segment should be removed or he wants to join this two segments and in that case buffers from right segment should be removed. Would need a bit more investigation which situation is more common in general usecase. Additional changes: - Cleanup some memutil files (which are familiar to cache limiter) - Add option to make moviecache verbose. If DEBUG_MESSAGES is defined in moviecache.c detailed logs would be printed to the console. - Movie caches are now named which helps reading debug messages.
2012-07-08fix [#32020] Image will not render in second (any scene other than first) if ↵Campbell Barton
scene name is longer than 28 characters
2012-07-08style cleanupCampbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-05style cleanupCampbell Barton
2012-07-04Spellfixes: colour -> colorBastien Montagne
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-02code cleanup: minor editsCampbell Barton
2012-07-01style cleanup: commentsCampbell Barton
2012-06-30Finally committing support for compressed textures on the GPU (DDS+DXT). ↵Mitchell Stokes
This patch started out as a patch by me, then cleaned up by Kupoman during his work on Cucumber. One important thing to keep in mind when using this feature is that you'll need to flip your textures vertically (both the GIMP and Photoshop DDS tools I've seen have support for this on export). This is a quirk in using a texture format originally made for DirectX/DirectDraw, and flipping the compressed data is a real headache. Another quick fix for this issue is to change the Y value for the Size in the Mapping panel in the Texture properties to -1 (default is 1).
2012-06-27missed tiff using 150 dpi as default in previous commit, use a define now.Campbell Barton
2012-06-27change default DPI for images to 72, aparently 150 gives issues with adobe ↵Campbell Barton
apps (which is stupid but default value isnt so important).
2012-06-24style cleanypCampbell Barton
2012-06-20style cleanupCampbell Barton
2012-06-18Reduce amount of deprecated symbols used from FFmpegSergey Sharybin
This switches some areas of Blender which are related on FFmpeg stuff from deprecated symbols to currently supported one. Pretty straightforward changes based on documentation of FFmpeg's API which symbols should be now used. This should make Blender compatible with recent FFmpeg 0.11. Should be no functional changes.
2012-06-14fix for years old bug - OpenEXR always adding alpha channel on load (how did ↵Campbell Barton
nobody notice this?).
2012-06-14code cleanup: zbuf/alpha exr writingCampbell Barton
2012-06-13style cleanupCampbell Barton
2012-06-12optimize jpeg2000 loading.Campbell Barton
2012-06-12optimize jpeg2000 savingCampbell Barton
- expand loops to avoid checks for each iteration - use unsigned ints for looping over pixels - use inline functions for color conversion
2012-06-11minor changes to jpeg2k saving based on reading v1.5 source examples.Campbell Barton
2012-06-11minor fixesCampbell Barton
- new compositor could use uninitialized var - profile conversion could use uninitialized var - set better warnings for clang+cmake. - remove picky warnings from sphinx doc gen shell script.
2012-06-07style cleanupCampbell Barton
2012-06-05style cleanupCampbell Barton
2012-05-29finish cleanup for pluginsCampbell Barton
2012-05-29Massive Code cleanup:Thomas Dinges
* Remove all code for Texture and Sequencer plugin system, this never worked in 2.5x / 2.6x and is therefore not needed anymore. * DNA structures are kept, all read/writefile code is gone.
2012-05-28style cleanup: defines with bracesCampbell Barton
2012-05-27style cleanupCampbell Barton
2012-05-27style cleanupCampbell Barton
2012-05-26code cleanup: use array size and const for vector argsCampbell Barton
2012-05-26code cleanup: dutch -> english (comments)Campbell Barton
2012-05-26add vector versions of hsv_to_rgb, rgb_to_hsv & rgb_to_hsv_compatCampbell Barton
2012-05-24style cleanup: brace placement/newlinesCampbell Barton
2012-05-24style cleanup: comma placementCampbell Barton