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>2012-03-20 12:42:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-20 12:42:26 +0400
commit9dd0c4c232fcdd2e88a2f8ba9391017a8bd55ce3 (patch)
tree5b86231770d067735ebb61b2b5fe3c099b5ef089 /source/blender/render
parenta0ea68a584a5d12bad08632f867e921ea781f3af (diff)
rename define BM_INLINE -> BLI_INLINE to avoid confusion with bmesh defines.
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/source/volumetric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/source/volumetric.c b/source/blender/render/intern/source/volumetric.c
index 36895f8ad53..17c4601264a 100644
--- a/source/blender/render/intern/source/volumetric.c
+++ b/source/blender/render/intern/source/volumetric.c
@@ -69,7 +69,7 @@ extern struct Render R;
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* luminance rec. 709 */
-BM_INLINE float luminance(const float col[3])
+BLI_INLINE float luminance(const float col[3])
{
return (0.212671f*col[0] + 0.71516f*col[1] + 0.072169f*col[2]);
}