| 393 | set_uniform_value(*variable, values, count, array_index); |
| 394 | } |
| 395 | void reshade::runtime::set_uniform_value_float(api::effect_uniform_variable handle, const float *values, size_t count, size_t array_index) |
| 396 | { |
| 397 | const auto variable = reinterpret_cast<uniform *>(handle.handle); |
| 398 | if (variable == nullptr) |
| 399 | return; |
| 400 | |
| 401 | set_uniform_value(*variable, values, count, array_index); |
| 402 | } |
| 403 | void reshade::runtime::set_uniform_value_int(api::effect_uniform_variable handle, const int32_t *values, size_t count, size_t array_index) |
| 404 | { |
| 405 | const auto variable = reinterpret_cast<uniform *>(handle.handle); |
no test coverage detected