| 298 | */ |
| 299 | template <typename T, std::enable_if_t<std::is_arithmetic<T>::value, bool> = true> |
| 300 | void UpdateTextureData(int textureIndex, const std::vector<T>& data) |
| 301 | { |
| 302 | this->WriteTextureData(textureIndex, data.data(), data.size() * sizeof(T)); |
| 303 | } |
| 304 | |
| 305 | ///@{ |
| 306 | /* |
nothing calls this directly
no test coverage detected