From 2a2453d3e20e662d5af05b359a71458fa8daabf1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 26 Oct 2007 15:32:36 +0000 Subject: nodes from eechlo * glare * tonemap * lense distort * fast gauss blur http://projects.blender.org/tracker/?func=detail&atid=127&aid=7505&group_id=9 made fast gauss blur an option for the blur node rather then a separate node. --- source/blender/makesdna/DNA_node_types.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'source/blender/makesdna/DNA_node_types.h') diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h index 63ead419766..40ceb9f0c46 100644 --- a/source/blender/makesdna/DNA_node_types.h +++ b/source/blender/makesdna/DNA_node_types.h @@ -230,4 +230,24 @@ typedef struct NodeDefocus { float fstop, maxblur, bthresh, scale; } NodeDefocus; + +/* qdn: glare node */ +typedef struct NodeGlare { + char quality, type, iter; + char angle, angle_ofs, size, pad[2]; + float colmod, mix, threshold, fade; +} NodeGlare; + +/* qdn: tonemap node */ +typedef struct NodeTonemap { + float key, offset, gamma; + float f, m, a, c; + int type; +} NodeTonemap; + +/* qdn: lens distortion node */ +typedef struct NodeLensDist { + short jit, proj, fit, pad; +} NodeLensDist; + #endif -- cgit v1.2.3