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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-07-28 14:21:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-07-28 14:41:09 +0300
commit038d6ce2cce5aaabfbba90d934b235601fcb561f (patch)
tree3a1697e5a3616bfd49b7927407e882e9e2c183a7 /intern/cycles/util/util_types.h
parentc6396d9204cb40f7736530e793288948e1adb55f (diff)
Cycles: Correction to image extension setting commit
Technically it was all wrong and it should have been called Extend instead of Clip. Got confused by the naming in different libraries. More options are still to come.
Diffstat (limited to 'intern/cycles/util/util_types.h')
-rw-r--r--intern/cycles/util/util_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/util/util_types.h b/intern/cycles/util/util_types.h
index 411f2d803f8..5198194b652 100644
--- a/intern/cycles/util/util_types.h
+++ b/intern/cycles/util/util_types.h
@@ -477,8 +477,8 @@ enum InterpolationType {
enum ExtensionType {
/* Cause the image to repeat horizontally and vertically. */
EXTENSION_REPEAT = 0,
- /* Clip to image size and set exterior pixels as transparent. */
- EXTENSION_CLIP = 1,
+ /* Extend by repeating edge pixels of the image. */
+ EXTENSION_EXTEND = 1,
};
/* macros */