| 80 | } |
| 81 | |
| 82 | FORCE_INLINE void SetFloat(int32 index, const float value) |
| 83 | { |
| 84 | ASSERT_LOW_LAYER(index * _stride < _data.Length()); |
| 85 | _sampler.Write(_data.Get() + index * _stride, Float4(value)); |
| 86 | } |
| 87 | |
| 88 | FORCE_INLINE void SetFloat2(int32 index, const Float2& value) |
| 89 | { |