47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/*
|
|
* +--------------------------------------+
|
|
* | confection de vignettes (primitives) |
|
|
* +--------------------------------------+
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "../tthimage.h"
|
|
|
|
#undef DEBUG_LEVEL
|
|
#define DEBUG_LEVEL 1
|
|
|
|
/*::------------------------------------------------------------------::*/
|
|
/*
|
|
* need more doc !!!
|
|
*/
|
|
int
|
|
Image_vignetize_x_0(Image_Desc *src, Image_Desc *dst, int prout)
|
|
{
|
|
|
|
#if DEBUG_LEVEL
|
|
fprintf(stderr, "Vignetize x 0: %p --(%d)--> %p\n", src, prout, dst);
|
|
#endif
|
|
|
|
|
|
return 666;
|
|
}
|
|
/*::------------------------------------------------------------------::*/
|
|
/*
|
|
* need more doc !!!
|
|
*/
|
|
int
|
|
Image_vignetize_x_1(Image_Desc *src, Image_Desc *dst, int prout)
|
|
{
|
|
|
|
#if DEBUG_LEVEL
|
|
fprintf(stderr, "Vignetize x 0: %p --(%d)--> %p\n", src, prout, dst);
|
|
#endif
|
|
|
|
|
|
return 666;
|
|
}
|
|
/*::------------------------------------------------------------------::*/
|
|
/*::------------------------------------------------------------------::*/
|
|
/*::------------------------------------------------------------------::*/
|
|
/*::------------------------------------------------------------------::*/
|