From acc02abaf1119628d3c73c708be078ad8b550167 Mon Sep 17 00:00:00 2001 From: castano Date: Tue, 3 Nov 2009 23:17:11 +0000 Subject: [PATCH] Fix messages. --- src/nvimage/NormalMap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvimage/NormalMap.cpp b/src/nvimage/NormalMap.cpp index 5ab1691..06e0c00 100644 --- a/src/nvimage/NormalMap.cpp +++ b/src/nvimage/NormalMap.cpp @@ -82,7 +82,7 @@ static FloatImage * createNormalMap(const FloatImage * img, FloatImage::WrapMode nvDebugCheck(kdv != NULL); nvDebugCheck(img != NULL); - #pragma message(NV_FILE_LINE "Height scale parameter should go away. It should be a sensible value that produces good results when the heightmap is in the [0, 1] range.") +#pragma message(NV_FILE_LINE "FIXME: Height scale parameter should go away. It should be a sensible value that produces good results when the heightmap is in the [0, 1] range.") const float heightScale = 1.0f / 16.0f; const uint w = img->width(); @@ -198,7 +198,7 @@ void nv::normalizeNormalMap(FloatImage * img) { nvDebugCheck(img != NULL); -#pragma messsage(NV_FILE_LINE "Pack and expand normals explicitly") +#pragma message(NV_FILE_LINE "TODO: Pack and expand normals explicitly") img->expandNormals(0); img->normalize(0);