forked from tTh/FloatImg
30 lines
625 B
C
30 lines
625 B
C
/*
|
|
* alphachan.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <sys/time.h>
|
|
|
|
#include "../floatimg.h"
|
|
|
|
extern int verbosity; /* must be declared around main() */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
int fimg_add_alpha_chan(FloatImg *img)
|
|
{
|
|
|
|
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
|
|
|
|
return -4;
|
|
}
|
|
/* ---------------------------------------------------------------- */
|
|
int fimg_kill_alpha_chan(FloatImg *img)
|
|
{
|
|
|
|
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
|
|
|
|
return -4;
|
|
}
|
|
/* ---------------------------------------------------------------- */
|