MCPcopy Create free account
hub / github.com/StereoKit/StereoKit / systems_step_partial

Function systems_step_partial

StereoKitC/systems/system.cpp:188–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186///////////////////////////////////////////
187
188void systems_step_partial(system_run_ run_section, int32_t system_idx) {
189 int32_t start, end;
190 switch (run_section) {
191 case system_run_before: { start = 0; end = system_idx; } break;
192 case system_run_from: { start = system_idx; end = systems.count; } break;
193 default: { start = 0; end = systems.count; } break;
194 }
195
196 for (int32_t i=start; i<end; i++)
197 system_execute(&systems[i]);
198}
199
200///////////////////////////////////////////
201

Callers 2

sk_step_beginFunction · 0.85
sk_step_endFunction · 0.85

Calls 1

system_executeFunction · 0.85

Tested by

no test coverage detected