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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-10-05 10:28:36 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-10-05 10:28:36 +0300
commit1a65289a122f31122ce740168e6d0072cbe60041 (patch)
tree49da600f2e687011f24478b9dd86d10d0d685c2d /intern
parent8e08c5064622519460aaf697a25171f4a90cfe99 (diff)
Fix T46358: Cycles point density uses repeat extension type
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/render/nodes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/render/nodes.cpp b/intern/cycles/render/nodes.cpp
index 7ed07ab6453..206c2e3e6b8 100644
--- a/intern/cycles/render/nodes.cpp
+++ b/intern/cycles/render/nodes.cpp
@@ -1381,7 +1381,7 @@ PointDensityTextureNode::~PointDensityTextureNode()
image_manager->remove_image(filename,
builtin_data,
interpolation,
- EXTENSION_REPEAT);
+ EXTENSION_CLIP);
}
}
@@ -1425,7 +1425,7 @@ void PointDensityTextureNode::compile(SVMCompiler& compiler)
false, 0,
is_float, is_linear,
interpolation,
- EXTENSION_REPEAT,
+ EXTENSION_CLIP,
true);
}
@@ -1473,7 +1473,7 @@ void PointDensityTextureNode::compile(OSLCompiler& compiler)
false, 0,
is_float, is_linear,
interpolation,
- EXTENSION_REPEAT,
+ EXTENSION_CLIP,
true);
}