-------------------------------------------------------------------------------------- Description: Cancels texture compression if it is not done yet. --------------------------------------------------------------------------------------
| 933 | // Cancels texture compression if it is not done yet. |
| 934 | // -------------------------------------------------------------------------------------- |
| 935 | void Tr2DxtCompressControl::Cancel() |
| 936 | { |
| 937 | m_cancel = true; |
| 938 | if( s_wodBackgroundCompressor && !m_isDone ) |
| 939 | { |
| 940 | s_wodBackgroundCompressor->Cancel( m_id ); |
| 941 | m_isDone = true; |
| 942 | } |
| 943 | } |
| 944 | |
| 945 | // -------------------------------------------------------------------------------------- |
| 946 | // Description: |
no outgoing calls
no test coverage detected