| 779 | } |
| 780 | |
| 781 | void CDDSImage::flip_texture(CTexture &texture) |
| 782 | { |
| 783 | flip(texture); |
| 784 | |
| 785 | for (unsigned int i = 0; i < texture.get_num_mipmaps(); i++) |
| 786 | { |
| 787 | flip(texture.get_mipmap(i)); |
| 788 | } |
| 789 | } |
| 790 | |
| 791 | /////////////////////////////////////////////////////////////////////////////// |
| 792 | // swap to sections of memory |
nothing calls this directly
no test coverage detected