| 289 | } |
| 290 | |
| 291 | void TextureBase::SetTextureGroup(int32 textureGroup) |
| 292 | { |
| 293 | if (_texture._header.TextureGroup != textureGroup) |
| 294 | { |
| 295 | _texture._header.TextureGroup = textureGroup; |
| 296 | _texture.RequestStreamingUpdate(); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | bool TextureBase::HasStreamingError() const |
| 301 | { |
nothing calls this directly
no test coverage detected