diff options
author | Marius Kintel <marius@kintel.net> | 2010-11-03 18:26:06 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-11-03 18:26:06 (GMT) |
commit | 264608981cfcd65de8e64af8d97648a315d52bc1 (patch) | |
tree | 486fed9c5c750d0e0b8c75290d315632db22c578 /src/node.h | |
parent | 4423c010301b8a94addee0ab0b3561023bba7290 (diff) |
Fixed some issues with PolySetRenderer, causing e.g. extrusions to fail in OpenCSG mode
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ public: /*! Should return a PolySet of the given geometry. It's normal to return an empty PolySet if smth. is wrong, but don't return NULL unless we change the calling strategy for this method. */ - virtual class PolySet *render_polyset(render_mode_e mode) const = 0; + virtual class PolySet *render_polyset(render_mode_e mode, class PolySetRenderer *renderer) const = 0; }; std::ostream &operator<<(std::ostream &stream, const AbstractNode &node); |