| 249 | GENERICff(fractionf) |
| 250 | |
| 251 | void powf_generic(asIScriptGeneric *gen) |
| 252 | { |
| 253 | float f1 = *(float*)gen->GetAddressOfArg(0); |
| 254 | float f2 = *(float*)gen->GetAddressOfArg(1); |
| 255 | *(float*)gen->GetAddressOfReturnLocation() = powf(f1, f2); |
| 256 | } |
| 257 | void atan2f_generic(asIScriptGeneric *gen) |
| 258 | { |
| 259 | float f1 = *(float*)gen->GetAddressOfArg(0); |
nothing calls this directly
no test coverage detected