| 89 | } |
| 90 | |
| 91 | U32 ResizeFilterStream::getPosition() const |
| 92 | { |
| 93 | AssertFatal(m_pStream != NULL, "Error, stream not attached"); |
| 94 | if (m_pStream == NULL) |
| 95 | return 0; |
| 96 | |
| 97 | return m_currOffset; |
| 98 | } |
| 99 | |
| 100 | bool ResizeFilterStream::setPosition(const U32 in_newPosition) |
| 101 | { |