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
2010-10-16most unused arg warnings corrected.Campbell Barton
- removed deprecated bitmap arg from IMB_allocImBuf (plugins will need updating). - mostly tagged UNUSED() since some of these functions look like they may need to have the arguments used later.
2010-10-15remove/tag unused args for view*.c, gpu*.c & image*.cCampbell Barton
2010-10-13Fix for [#24208] ObjectId information is wrong when read from multilayer exrJanne Karhu
* non-rgba passes shouldn't use color correction
2010-10-12bugfix [#24225] Blur Node ignores gamma option when size has input.Campbell Barton
2010-10-12[#23709] Blur node on Flat blurs even at 0 by 0 pixel spreadCampbell Barton
skip blur x/y when either is set to zero.
2010-09-25Fix #23901: displace node not working with negative values.Brecht Van Lommel
2010-09-22bugfix [#23948] Alpha from images inside compositor is goneCampbell Barton
also fix memory leak.
2010-09-21Error reported by Daniel Salazar, Compositor color is wrong since my fix.Campbell Barton
this is because of fairly confusing logic, when an SRGB image has a float buffer added its always LINEAR, so we have to account for this elsewhere. So the conversion from byte to float works like this: * NONE -> NON-LINEAR * SRGB/LINEAR -> LINEAR ...but none change the profile variable.
2010-09-18bugfix [#23706] SEGFAULT: File Load of EXRCampbell Barton
image node was modifying the original buffer color management, now only modify a copy.
2010-09-07patch [#23703] Fix for Level compositing node; correct color representationCampbell Barton
from Alexander Kuznetsov (alexk) --- copied from the tracker Every image inside Blender is in linear color space and gets converted to SRGB upon saving. Level node analyzed the linear image, which was not the one user saw because other output nodes converted image to sRGB. This fix analyzes the image that user see (converting it to correct color space). Here is difference: http://www.pasteall.org/pic/show.php?id=5559 First histogram (before the fix) tells that image is underexposed, which is not the case.
2010-09-06- use list append in more places (preferred method since its faster)Campbell Barton
- remove some unused include paths - remove unused linux path define
2010-08-29Tweaks to ASC-CDL colour balance formula to exactly match the spec.Matt Ebb
2010-08-28patch [#23537] Memory leak in compositor rotate nodeCampbell Barton
from Jeroen Bakker (jbakker)
2010-08-25Allow per-pixel inputs into displace node x and y scaleMatt Ebb
(previously only used constant values)
2010-08-25Applied patch #23379. Does not change existing .blend files and looksRobert Holcomb
good.
2010-08-16jp2.c has a non-utf8 char which stopped python from reading it, removed ↵Campbell Barton
unused vars from CMP_chromaMatte.c
2010-08-16Fixed bug in normalition of YCbCr color space conversion (from 0..1 toRobert Holcomb
-1..1) to fix errors in keying. Simplified chroma key to not take despill into consideration (handled elsewhere). Simplified user interface for pieces not used.
2010-08-11Update address in license block.Guillermo S. Romero
2010-08-04Increase min/max range for Value input nodes. More useful when using Math ↵Nathan Letwory
nodes (inverting sign was impossible using value input in CMP before).
2010-08-02added capabilty to limit color spill by an input maskRobert Holcomb
2010-07-31recent commit to make color balance work like the sequencer, I forgot that ↵Campbell Barton
the gamma was inverted. fixed.
2010-07-31Change compositor color balance to match the sequencer exactly, for this to ↵Campbell Barton
work linear/srgb conversions need to be done which that nice since it has to convert from/to the color spaces each time, after quite a lot of testing I think its the best way to go. The problem was that typical lift values (0.5 - 1.5, in our case ) would over saturate shadows so that even minor adjustments would give unusable results. tweaking the input lift to compensate for this helped with the shadows but would loose the color adjustments for the mid-tones.
2010-07-30Preview commit in sculpt brushes broke resetting curves in other areas (rgb ↵Matt Ebb
curves etc). Fixed by adding a 'slope' parameter to curvemap_reset() to mirror curve presets around Y axis. Also removed curve preset with 'random' icon, wasn't doing what it looked like it should, this was intended only for hue correct node anyway.
2010-07-21Fix #22786: displace node doesn't work with procedural textures.Brecht Van Lommel
2010-07-12tweak to color balance after talking with colin and testing other software, ↵Campbell Barton
lift for values above 1.0 was too intense. Use: 1 + ((lift-1) * (lift-1)) so 2.0 is still a full lift but 1.x isnt so strong. Changed color picker to give more precission, we were having to edit the buttons to see what the numbers were.
2010-07-09New option for Scale node.Diego Borghetti
This is because problem reported by venomgfx on the irc. If you have a render of 2k with a render size of 25% (and this problem is for any resolution/size) and you try to use a image of 1k in the compo, the first thing you do is put a scale node. Here come the problem, if you set the option "Scene Size" in the node scale, the buffer output is not the same size that the render. This is because the "Scene size" work with the image size and not the render size, so in this case is the 25% of 1k.. not the 25% 2k. So this new option "Render Size" scale the output buffer to the render resolution, taking into account the render size (percentage) too.
2010-07-08Fix Texture node don't take care render size.Diego Borghetti
The texture node was not taking into account the precentage of the render when create the output buffer. Reported by venomgfx at irc.
2010-07-06Correction to recent color balance compositor and sequencer changes.Campbell Barton
- In my changes lift was acting like a second gamma. - In blender 2.4x it was being added which gave ugly clipping. - in Magic Bullet Looks it scales the color about 1.0: (col - 1 * (2-lift)) + 1 Did more testing and made sure the order of applying lift/gamma/gain works the same as MagicBulletLooks (tested on Collin's mac laptop).
2010-07-05Color Balance NodeCampbell Barton
changes from sequencer applied to compositor mostly noticable is how the lift works. Before & After, http://www.graphicall.org/ftp/ideasman42/color_balance_before_after.png even with lower values these kinds of errors can be seen.
2010-06-30OpenMP multithreading for the defocus node. Reason: defocus can take 16xBrecht Van Lommel
longer on a 4k render than on a 2k render (due to O(n^2) scaling).
2010-06-23Change to file output compositor node - Matt Ebb
Now it only outputs files when rendering, otherwise, it overwrites the output files whenever the compositor updates (i.e. just scrubbing through the timeline )
2010-05-26Fix [#22418] Displace Node also makes entire image fuzzyMatt Ebb
Changed displace node sampling to use EWA filtering, and removed old hacks for calculating derivatives - I think it should be generated correctly now.
2010-04-24sub_v3_v3v3 --> sub_v3_v3 (where possible)Campbell Barton
2010-04-17bugfix and cleanupCampbell Barton
- BGE Shader.setSampler(name, index): index range check was wrong. - Compositor check for an invalid channel was incorrect. - getting the center of selected verts used an uninitalized z axis. - do_init_render_material() used && rather then & when testing for MA_TRANSP. - weight paint activate flipped bone used && rather then & for flag checking.
2010-04-13Fix for hue correct node, was clamping value of hsv unnecessarily.Matt Ebb
2010-04-06Fix #21545: geometry node front/back incorrectly depended on camera angle, canBrecht Van Lommel
actually be implemented simpler now.
2010-04-01svn merge https://svn.blender.org/svnroot/bf-blender/branches/render25 ↵Campbell Barton
-r27895:27901; svn merge https://svn.blender.org/svnroot/bf-blender/branches/render25 -r27902:27907, skipping 27902
2010-03-31Fix [#21826] Memory Map growing in size on each renderMatt Ebb
Image node wasn't properly getting marked to free compbuf data when using premul.
2010-03-31Fix [#21727] texture in compositor quickly results in crashMatt Ebb
Hopefully this is correct - looks like the CompBuf->node pointer was getting left out of the per-thread copying/localisation.
2010-03-31Fix:Matt Ebb
[#21841] SplitViewer doesn't backdrop in Node Editor [#21803] Cant See Split Viewer on UV editor
2010-03-31Patch from Xavier Thomas: Matt Ebb
YCbCr conversion function according to ITU-R BT.601/709 and JFIF Clarifies color space usage in rgb->ycc conversion, doesn't change existing results.
2010-03-27Second attempt at committing the different render slot implementation. ThisBrecht Van Lommel
has a fix that hopefully solves the problem on mac/win. Also fixes #21322, render slots not working well with FSA.
2010-03-25Patch from Francois Tarlier: extend colour balance node 'lift' value to ↵Matt Ebb
0.0-2.0 range (default 1.0), like the other controls. Thanks!
2010-03-22spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)Campbell Barton
2010-03-16Fixes for thread related render / compositing crashes:Brecht Van Lommel
* Viewer node could free image while it is being redrawn, viewer image buffers now need acquire/release to be accessed as was already the case for render results. * The Composite node could free the image buffers outside of a lock, also causing simultaneous redraw to crash. * Especially on Windows, re-rendering could crash when drawing an image that was freed. When RE_RenderInProgress was true it would access the image buffer and simply return it while it could still contain a pointer to a render result buffer that was already freed. I don't understand why this case was there in the first place, so I've removed it. Possibly fixes bugs #20174, #21418, #21391, #21394.
2010-03-16added different sampling methods in rotate nodeRobert Holcomb
fixed bug in difference matte node that prevented using a solid color for second input -also clairified some variable names to be more meaningful
2010-03-15Various warning fixes.Brecht Van Lommel
2010-03-13added method to change algorithm used in channel matte node. Limit a ↵Robert Holcomb
channel by another channel or limit by max of remaining channels.
2010-03-12updated despill node to incorperate changes from Xavier Thomas's patch #18012Robert Holcomb
2010-03-12Fix #21211: new indirect/environment/emit passes weren't showing upBrecht Van Lommel
in compositor and outliner yet.