| 475 | template<> float VariableImpl<int>::GetFloat() const { return (float)GetData(); } |
| 476 | |
| 477 | template<> int2 VariableImpl<int2>::GetInt2() const { return GetData(); } |
| 478 | template<> int3 VariableImpl<int3>::GetInt3() const { return GetData(); } |
| 479 | |
| 480 | template<> bool VariableImpl<float>::GetBool() const { return GetData() != 0.f; } |
nothing calls this directly
no outgoing calls
no test coverage detected