| 1729 | } |
| 1730 | |
| 1731 | void PushSetTextureAsyncDeleteTexture(SetTextureAsyncState& state, HTexture texture) |
| 1732 | { |
| 1733 | DM_MUTEX_SCOPED_LOCK(state.m_Mutex); |
| 1734 | if (state.m_PostDeleteTextures.Full()) |
| 1735 | { |
| 1736 | state.m_PostDeleteTextures.OffsetCapacity(64); |
| 1737 | } |
| 1738 | state.m_PostDeleteTextures.Push(texture); |
| 1739 | } |
| 1740 | |
| 1741 | SetTextureAsyncParams GetSetTextureAsyncParams(SetTextureAsyncState& state, uint16_t index) |
| 1742 | { |
no test coverage detected