Merge fixes from trunk.

2.0
castano 16 years ago
parent 4c3549cb66
commit 21fb83c081

@ -1,5 +1,6 @@
NVIDIA Texture Tools version 2.0.2 NVIDIA Texture Tools version 2.0.2
* Fix copy ctor error reported by Richard Sim. * Fix copy ctor error reported by Richard Sim.
* Fix indexMirror error reported by Chris Lambert.
NVIDIA Texture Tools version 2.0.1 NVIDIA Texture Tools version 2.0.1
* Fix memory leaks. * Fix memory leaks.

@ -228,12 +228,12 @@ inline uint FloatImage::indexMirror(int x, int y) const
{ {
x = abs(x); x = abs(x);
while (x >= m_width) { while (x >= m_width) {
x = m_width + m_width - x - 2; x = abs(m_width + m_width - x - 2);
} }
y = abs(y); y = abs(y);
while (y >= m_height) { while (y >= m_height) {
y = m_height + m_height - y - 2; y = abs(m_height + m_height - y - 2);
} }
return index(x, y); return index(x, y);

Loading…
Cancel
Save