MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / das_context_eval_block

Function das_context_eval_block

src/misc/daScriptC.cpp:387–390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

385}
386
387vec4f das_context_eval_block ( das_context * context, das_block * block, vec4f * arguments ) {
388 if ( !block ) ((Context *)context)->throw_error("invoke null block"); // this never happens
389 return ((Context *)context)->invoke(*((Block *)block), arguments, nullptr, nullptr);
390}
391
392void das_context_eval_block_unaligned ( das_context * context, das_block * block, vec4f_unaligned * arguments, int narguments, vec4f_unaligned * result ) {
393 vec4f * args = nullptr;

Callers 2

c_call_block_implFunction · 0.85

Calls 2

throw_errorMethod · 0.80
invokeMethod · 0.45

Tested by

no test coverage detected