| 2199 | return blockFunction((cast<argType>::to(args[I]))...); |
| 2200 | } |
| 2201 | DAS_EVAL_ABI virtual vec4f eval ( Context & context ) override { |
| 2202 | DAS_PROFILE_NODE |
| 2203 | vec4f ** arguments = (vec4f **)(context.stack.bottom() + argumentsOffset); |
| 2204 | using Indices = make_index_sequence<sizeof...(argType)>; |
| 2205 | return cast<resType>::from ( callBlockFunction(*arguments, Indices()) ); |
| 2206 | } |
| 2207 | BlockFn blockFunction; |
| 2208 | }; |
| 2209 |