| 74 | } |
| 75 | |
| 76 | FORCE_INLINE void SetInt(int32 index, const int32 value) |
| 77 | { |
| 78 | ASSERT_LOW_LAYER(index * _stride < _data.Length()); |
| 79 | _sampler.Write(_data.Get() + index * _stride, Float4((float)value)); |
| 80 | } |
| 81 | |
| 82 | FORCE_INLINE void SetFloat(int32 index, const float value) |
| 83 | { |