From 032b42d48de111d48c85a09118966691997d0374 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 13 Mar 2014 06:18:25 +1100 Subject: Code cleanup: de-duplicate switch statement, style edits --- source/blender/makesrna/intern/rna_nodetree.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/makesrna/intern/rna_nodetree.c') 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} }; -- cgit v1.2.3