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-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-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-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-13Fix for hue correct node, was clamping value of hsv unnecessarily.Matt Ebb
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: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.
2010-03-11Restored Environment mapsMatt Ebb
* Fixed up RNA and UI * Brought back 'Save' and 'Clear' operators (in the little triangle menu in environment map properties) * While I was at it, noticed that environment maps were only using 8bit colour, changed it to use full 32bit float instead for proper HDR colour etc, so environment map reflections have the correct colour range --> http://mke3.net/blender/devel/2.5/env_hdr.jpg This fixes [#20904] Environment Map does not render; also missing panel
2010-03-09Fix [#21188] HueCorrection Node, when reseting Curve, it goes to a incline ↵Matt Ebb
instead of flat/straight
2010-03-09Fix [#21022] Compositors File Output node doesn't use Colour ManagmentMatt Ebb
2010-02-16Revert render slots commit for release, I can't find the bug or even redoBrecht Van Lommel
it myself, there will still be render slots just old implementation.
2010-02-16Render Slots: change the implementation by moving it from the render to theBrecht Van Lommel
image code, this should be clearer and makes reusing the Render struct later on easier.
2010-02-12correct fsf addressCampbell Barton
2010-02-09J-key render switching back, now with 10 slots.Brecht Van Lommel
Implementation note: this was done by giving each Render a slot number, and for every slot a new Render will be created. Not sure if this is ideal, but it ensures that all passes, render info, etc are separate so you can also compare render layers and passes, in 2.4x only whatever it was currently displaying was backed up.
2010-01-27Fixes to Color Balance node:Matt Ebb
* The Lift/Gamma/Gain formula previously was incorrect, fixed this and removed conversions - now the RNA values are the same as what goes into the formula. * Because of this, added the ability for the Value slider to map to a wider range than 0.0-1.0. The black/white gradient remains the same, in this case just indicating darker/brighter rather than absolute colour values. Also added ability for color wheels to be locked at full brightness (useful for this case, where the color value itself is dark). * Added an alternate formula - offset/power/slope (asc-cdl). This fits the standard Color Decision List formula, here for compatibility with other systems, though default Lift/Gamma/Gain is easier to use and gives nicer results.
2010-01-22Added Hue and Value modes to Hue Correct node, alongside existing Matt Ebb
Saturation. Works the same way, selectively hue shifting or darkening/ brightening pixels based on their original hue. Example: http://mke3.net/blender/devel/2.5/hue_correct_hue_val.jpg
2010-01-21SVN maintenance.Guillermo S. Romero
2010-01-21New Compositor node: Hue ControlMatt Ebb
Was very quick to do, now re-aquainted with node editor. http://mke3.net/blender/devel/2.5/hue_correct_node.jpg Todo: modes for affecting hue and value on the vertical axis as well as just saturation - or if an enterprising coder wants to give it a go, let me know and I can help :)
2010-01-20Forgot to add the new fileMatt Ebb
2010-01-19removed 3D view listener for changing the background image frame.Campbell Barton
do this on drawing instead since SCREEN_OT_animation_step isnt calling the notifier (assume this is to be more efficient?). this isnt slow so is ok to do on drawing. rename BKE_image_user_calc_imanr to BKE_image_user_calc_frame
2010-01-12Fix [#20000] Connect to File Output node creates segfaultMatt Ebb