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:
authorCampbell Barton <ideasman42@gmail.com>2014-03-12 23:18:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-12 23:31:06 +0400
commit032b42d48de111d48c85a09118966691997d0374 (patch)
treea02784463a5094dd5383b1e0c89f0390823b6464 /source/blender/makesrna/intern/rna_nodetree.c
parentdeef641878721438f39504aeef77c814500f37bb (diff)
Code cleanup: de-duplicate switch statement, style edits
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 080652f9578..8fbb91560f1 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -3430,13 +3430,13 @@ static void def_sh_tex_image(StructRNA *srna)
static const EnumPropertyItem prop_interpolation_items[] = {
{SHD_INTERP_LINEAR, "Linear", 0, "Linear",
- "Linear interpolation"},
+ "Linear interpolation"},
{SHD_INTERP_CLOSEST, "Closest", 0, "Closest",
- "No interpolation (sample closest texel"},
- {SHD_INTERP_CUBIC, "Cubic", 0, "Cubic",
- "Cubic interpolation (OSL only)"},
- {SHD_INTERP_SMART, "Smart", 0, "Smart",
- "Bicubic when maxifying, else bilinear (OSL only)"},
+ "No interpolation (sample closest texel"},
+ {SHD_INTERP_CUBIC, "Cubic", 0, "Cubic",
+ "Cubic interpolation (OSL only)"},
+ {SHD_INTERP_SMART, "Smart", 0, "Smart",
+ "Bicubic when maxifying, else bilinear (OSL only)"},
{0, NULL, 0, NULL, NULL}
};