(NOTE: new include dependency in Render module, might need MSVC update! It has to include the imbuf/intern/openexr/ directory in search path) -> New Composite node: "Hue Saturation". Works like the former 'post process' menu. There's no gamma, brightness or multiply needed in this node, for that the Curves Node functions better. -> Enabled Toolbox in Node editor This now also replaces the SHIFT+A for adding nodes. The nodes are automatically added to the menus, using the 'class' category from the type definition. Current classes are (compositor examples): Inputs: RenderResult, Image Outputs: Composite, Viewer Color Ops: RGB Curves, Mix, Hue Saturation, AlphaOver Vector Ops: Normal, Vector Curves, Map Value Filters: Filter, Blur, VectorBlur Convertors: ColorRamp, RGBtoBW, Separate RGBA, Separate HSVA, Set Alpha Generators: RGB, Value, Time Groups: the list of custom defined nodes -> OpenEXR tile saving support Created an API for for saving tile-based Images with an unlimited amount of layers/channels. I've tested it for 'render result' now, with the idea that this can (optionally) replace the current inserting of tiles in the main result buffers. Especially with a lot of layers, the used memory for these buffers can easily go into the 100s of megs. Two other advantages: - all 'render result' layers can be saved entirely in a single file, for later use in compositing, also for animation output. - on each render, per scene, a unique temp file can be stored, allowing to re-use these temp files on starting Blender or loading files, showing the last result of a render command. The option is currently disabled, needs more work... but I had to commit this because of the rest of the work I did! -> Bug fix The Image node didn't call an execute event when browsing another image.
67 lines
2.2 KiB
C++
67 lines
2.2 KiB
C++
/* toolbox (SPACEKEY) related
|
|
* $Id$
|
|
*
|
|
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version. The Blender
|
|
* Foundation also sells licenses for use in proprietary software under
|
|
* the Blender License. See http://www.blender.org/BL/ for information
|
|
* about this.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
* All rights reserved.
|
|
*
|
|
* The Original Code is: all of this file.
|
|
*
|
|
* Contributor(s): none yet.
|
|
*
|
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
*/
|
|
|
|
#ifndef BIF_TOOLBOX_H
|
|
#define BIF_TOOLBOX_H
|
|
|
|
/* toolbox.c */
|
|
void asciitoraw (int ch, short unsigned int *event, short unsigned int *qual);
|
|
|
|
void toolbox_n(void);
|
|
void toolbox_n_add(void);
|
|
void reset_toolbox(void);
|
|
|
|
void notice (char *str, ...);
|
|
void error (char *fmt, ...);
|
|
|
|
int saveover (char *filename);
|
|
int okee (char *fmt, ...);
|
|
|
|
short button (short *var, short min, short max, char *str);
|
|
short fbutton (float *var, float min, float max, float a1, float a2, char *str);
|
|
short sbutton (char *var, float min, float max, char *str); /* __NLA */
|
|
|
|
int movetolayer_buts (unsigned int *lay);
|
|
int movetolayer_short_buts (short *lay);
|
|
|
|
void draw_numbuts_tip (char *str, int x1, int y1, int x2, int y2);
|
|
int do_clever_numbuts (char *name, int tot, int winevent);
|
|
void clever_numbuts_buts(void);
|
|
void add_numbut (int nr, int type, char *str, float min, float max, void *poin, char *tip);
|
|
void clever_numbuts (void);
|
|
void replace_names_but (void);
|
|
|
|
void BIF_screendump(int fscreen);
|
|
void write_screendump(char *name);
|
|
|
|
#endif
|