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:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-04-26 00:42:50 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2005-04-26 00:42:50 +0400
commitb16d6e005d93c22c163ae355e35583c9f924d291 (patch)
tree50814f8c48b2e7800c8f89f16d0adf6c777e0220 /source/blender/render/intern/include/texture.h
parent28ebc6fede1560b634364d741ea0543bfc85cde4 (diff)
Fix #2472 for rotate edges. Somewhere along the line edge h flags were being wiped out. This addition now saves those flags and restores them
Diffstat (limited to 'source/blender/render/intern/include/texture.h')
-rw-r--r--source/blender/render/intern/include/texture.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/render/intern/include/texture.h b/source/blender/render/intern/include/texture.h
index 866f631dac6..525f8455aa2 100644
--- a/source/blender/render/intern/include/texture.h
+++ b/source/blender/render/intern/include/texture.h
@@ -50,6 +50,7 @@ struct HaloRen;
struct ShadeInput;
struct TexResult;
struct Tex;
+struct Image;
/* texture.h */
@@ -59,8 +60,8 @@ void render_realtime_texture(struct ShadeInput *shi);
/* imagetexture.h */
-int imagewraposa(struct Tex *tex, float *texvec, float *dxt, float *dyt, struct TexResult *texres);
-int imagewrap(struct Tex *tex, float *texvec, struct TexResult *texres);
+int imagewraposa(struct Tex *tex, struct Image *ima, float *texvec, float *dxt, float *dyt, struct TexResult *texres);
+int imagewrap(struct Tex *tex, struct Image *ima, float *texvec, struct TexResult *texres);
#endif /* TEXTURE_EXT_H */