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:
authorPeter Schlaile <peter@schlaile.de>2007-10-12 10:37:20 +0400
committerPeter Schlaile <peter@schlaile.de>2007-10-12 10:37:20 +0400
commit3697e0852467a29223a59d2ad6a31a00cfbde529 (patch)
tree8c86485c60cd49e2080d90d1d904e2000f5e7d72 /source/blender/imbuf/IMB_imbuf.h
parent4f961081377ce262823fd4a037ce969fc5088474 (diff)
== IMBuf fix ==
Fixed Campbell's patch for IMB_flipx: - header file declaration is corrected - reordered loops to make things faster (less cache misses and no tests for float-buffers on a _per pixel basis_!) (Campbell: it'd be nice, if you could check with me before patching the sequencer. Or at least pay attention to compiler warnings :) )
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/imbuf/IMB_imbuf.h b/source/blender/imbuf/IMB_imbuf.h
index 11cdebe70c3..2ca21e548c4 100644
--- a/source/blender/imbuf/IMB_imbuf.h
+++ b/source/blender/imbuf/IMB_imbuf.h
@@ -418,14 +418,6 @@ void bilinear_interpolation(struct ImBuf *in, struct ImBuf *out, float u, float
void IMB_convert_bgra_to_rgba(int size, unsigned int *rect);
/**
- * Flip the image X/Y
- *
- * @attention Defined in imageprocess.c
- */
-void IMB_xflip(struct ImBuf *ibuf);
-void IMB_yflip(struct ImBuf *ibuf);
-
-/**
*
* @attention defined in scaling.c
*/
@@ -532,6 +524,7 @@ extern float rgb_to_bw[4][4];
*
* @attention Defined in rotate.c
*/
+void IMB_flipx(struct ImBuf *ibuf);
void IMB_flipy(struct ImBuf * ibuf);
/**