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>2011-11-06 20:23:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-06 20:23:28 +0400
commit3d1e45c414f81a690ad33e1ee4feacbf313c45b0 (patch)
tree8aaf9507e46a31d035089880eee76b3affc9a158 /source/blender/nodes/texture/nodes/node_texture_image.c
parentb05ee8b65f453d97edb4dbe59fac5c996fbf78d2 (diff)
replace macros with bli math functions for nodes
Diffstat (limited to 'source/blender/nodes/texture/nodes/node_texture_image.c')
-rw-r--r--source/blender/nodes/texture/nodes/node_texture_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/texture/nodes/node_texture_image.c b/source/blender/nodes/texture/nodes/node_texture_image.c
index 3a81ecb1466..0ead3a3dec2 100644
--- a/source/blender/nodes/texture/nodes/node_texture_image.c
+++ b/source/blender/nodes/texture/nodes/node_texture_image.c
@@ -76,7 +76,7 @@ static void colorfn(float *out, TexParams *p, bNode *node, bNodeStack **UNUSED(i
while( py >= ibuf->y ) py -= ibuf->y;
result = ibuf->rect_float + py*ibuf->x*4 + px*4;
- QUATCOPY( out, result );
+ copy_v4_v4( out, result );
}
}
}