Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-05-19 17:15:07 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-05-19 17:15:07 +0400
commit8ef2f1d524d81bce565d08f647805e6084de54de (patch)
tree09ef74c8cb7550449f2c7f86fa881f5fc461d149 /source/blender/freestyle/intern/image
parent09b36970bb584c1c72dd6166f2dde068b09e22bf (diff)
soc-2008-mxcurioni: resolved uint issues (replaced with unsigned int). Still NOT linking
Diffstat (limited to 'source/blender/freestyle/intern/image')
-rwxr-xr-xsource/blender/freestyle/intern/image/ImagePyramid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/image/ImagePyramid.cpp b/source/blender/freestyle/intern/image/ImagePyramid.cpp
index e3f84983055..542ab7917e3 100755
--- a/source/blender/freestyle/intern/image/ImagePyramid.cpp
+++ b/source/blender/freestyle/intern/image/ImagePyramid.cpp
@@ -58,9 +58,9 @@ float ImagePyramid::pixel(int x, int y, int level){
if(0 == level){
return img->pixel(x,y);
}
- uint i = 1<<level;
- uint sx = x>>level;
- uint sy = y>>level;
+ unsigned int i = 1<<level;
+ unsigned int sx = x>>level;
+ unsigned int sy = y>>level;
if(sx >= img->width())
sx = img->width()-1;
if(sy >= img->height())