| 2032 | struct SimNode_Aot : SimNode_CallBase { |
| 2033 | vec4f(*wrapAotFunction)(Context*); |
| 2034 | __forceinline SimNode_Aot ( void* fn, vec4f(*wrappedFn)(Context*) ) : SimNode_CallBase(LineInfo(),"") { |
| 2035 | aotFunction = fn; |
| 2036 | wrapAotFunction = wrappedFn; |
| 2037 | } |
| 2038 | DAS_EVAL_ABI virtual vec4f eval ( Context & context ) override { |
| 2039 | DAS_PROFILE_NODE |
| 2040 | vec4f * aa = context.abiArg; |
nothing calls this directly
no test coverage detected