forked from tTh/FloatImg
24 lines
519 B
C
24 lines
519 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)
|
||
|
{
|
||
|
return -4;
|
||
|
}
|
||
|
/* ---------------------------------------------------------------- */
|
||
|
int fimg_kill_alpha_chan(FloatImg *img)
|
||
|
{
|
||
|
return -4;
|
||
|
}
|
||
|
/* ---------------------------------------------------------------- */
|