From 1f4d313d0f893a4978061b8fbe5910d203cfe443 Mon Sep 17 00:00:00 2001 From: castano Date: Mon, 29 Dec 2008 11:34:39 +0000 Subject: [PATCH] Merge changes from internal branch. Whitespace changes only. --- src/nvimage/DirectDrawSurface.cpp | 2 +- src/nvimage/FloatImage.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvimage/DirectDrawSurface.cpp b/src/nvimage/DirectDrawSurface.cpp index 41b4f0b..e74c4d5 100644 --- a/src/nvimage/DirectDrawSurface.cpp +++ b/src/nvimage/DirectDrawSurface.cpp @@ -638,7 +638,7 @@ void DDSHeader::setFourCC(uint8 c0, uint8 c1, uint8 c2, uint8 c3) // set fourcc pixel format. this->pf.flags = DDPF_FOURCC; this->pf.fourcc = MAKEFOURCC(c0, c1, c2, c3); - + this->pf.bitcount = 0; this->pf.rmask = 0; this->pf.gmask = 0; diff --git a/src/nvimage/FloatImage.h b/src/nvimage/FloatImage.h index c6d02e1..bc47149 100644 --- a/src/nvimage/FloatImage.h +++ b/src/nvimage/FloatImage.h @@ -247,7 +247,7 @@ inline uint FloatImage::indexMirror(int x, int y) const } if (m_height == 1) y = 0; - + y = abs(y); while (y >= m_height) { y = abs(m_height + m_height - y - 2);