FloatImg/lib/alphachan.c

30 lines
625 B
C
Raw Permalink Normal View History

2022-07-11 06:12:25 +02:00
/*
* 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)
{
2023-11-29 11:26:56 +01:00
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
2022-07-11 06:12:25 +02:00
return -4;
}
/* ---------------------------------------------------------------- */
int fimg_kill_alpha_chan(FloatImg *img)
{
2023-11-29 11:26:56 +01:00
fprintf(stderr, ">>> %s ( %p )\n", __func__, img);
2022-07-11 06:12:25 +02:00
return -4;
}
/* ---------------------------------------------------------------- */