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>2010-03-21 03:25:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-03-21 03:25:52 +0300
commit03acdd75e0c75b78bdf5c2c23bcf6c8cf40cb459 (patch)
treef67edcc182d305b9dd776c38236c27ee13dd5763 /source/blender/blenkernel/BKE_image.h
parent42a0ef4dcfca7934329cd3c0b911f9d895582efc (diff)
[#21660] improved UV test grid
from shuvro sarker (shuvro) Added text to the patch and made other minor tweaks. moved image generation functions into their own file.
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index d1808366944..df51d017594 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -162,6 +162,11 @@ struct Image *BKE_image_copy(struct Image *ima);
/* merge source into dest, and free source */
void BKE_image_merge(struct Image *dest, struct Image *source);
+/* image_gen.c */
+void BKE_image_buf_fill_color(unsigned char *rect, float *rect_float, int width, int height, float color[4]);
+void BKE_image_buf_fill_checker(unsigned char *rect, float *rect_float, int height, int width);
+void BKE_image_buf_fill_checker_color(unsigned char *rect, float *rect_float, int height, int width);
+
#ifdef __cplusplus
}
#endif