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-02-12correct fsf addressCampbell Barton
2008-06-26Fix for bug [#13651] Convertor->Math->Divide brokenJuho Vepsalainen
Changed the if statement to catch zero case properly.
2008-06-17* Simple addition to math node (comp and shading): Greater Than and Less ↵Matt Ebb
Than modes.
2008-03-16Fix for bug #8582: compositor math node did not output any resultBrecht Van Lommel
without input connections.
2007-07-23Changed logic for early out to require only one input, not two. This allows ↵Robert Holcomb
for an image to be processed with a value.
2007-07-11One more time....I misunderstood the guidance about values as inputs for Robert Holcomb
the math node. Now it functions with two values as inputs (no image neccissary). Kinda back where it started ;)
2007-07-11After chatting with Broken about grs comments on the default behavior Robert Holcomb
of the nodes, I realized I had strayed from the path of enlightened blending by causing the math node to create an output the size of the larger of the two inputs. It has been corrected create the output the size of the first image, and in its abscense the second image. In the event of nether input containing image data the node does not function. I also added some early out checks at the beginning of the function to speed it up a tad in these cases and commented the code a bit more.
2007-07-10Committed patch fixing bug #6900. Math node now has reflective Robert Holcomb
behavior.
2007-04-04=== Node editor ===Nathan Letwory
* refactor copying and freeing of node->storage by handlerizing them. - freestoragefunc - copystoragefunc - node_util.c/h have generic handlers for these.
2007-03-26Changed node type definitions to use a dynamic list.Ton Roosendaal
This will allow python or plugin defined nodes to work as well. (And fixes compile issues with MSVC in yesterdays commit for nodes) Code provided by Nathan L. Fixes in his code: - free_nodesystem() was called too late (after guarded alloc was closed) - free_nodesystem() was freeing nodes that were not malloced even - free_nodesystem was using free, not freeN :) - the typedefs needed to be malloced yes, to allow duplicate nodes like group but also for dynamic nodes.
2007-03-26All UI code reverted to drawnode.cRobert Holcomb
2007-03-24Initial commit. Not in build system so shouldn't interfere with anything at ↵Robert Holcomb
this point. Will commit modified versions of existing files once build system is tested.