Compare commits
No commits in common. "51190aa1c466165dccd612e6cd5a75d2f15e76c1" and "b8b34d01777e6b5dfaa0d0ed03b4351a6aded1d8" have entirely different histories.
51190aa1c4
...
b8b34d0177
@ -20,14 +20,14 @@ if (4 != argc) {
|
||||
}
|
||||
fname = argv[1];
|
||||
width = atoi(argv[2]); height = atoi(argv[3]);
|
||||
fprintf(stderr, "making %s %d x %d\n", fname, width, height);
|
||||
fprintf(stderr, "making %s %d x %d\n", fname, width, height);
|
||||
|
||||
foo = fimg_create(&fimg, width, height, 3);
|
||||
if (foo) {
|
||||
fprintf(stderr, "create floatimg -> %d\n", foo);
|
||||
exit(1);
|
||||
}
|
||||
// fimg_describe(&fimg, "just a black flimg");
|
||||
fimg_describe(&fimg, "just a black flimg");
|
||||
fimg_clear(&fimg);
|
||||
|
||||
foo = fimg_dump_to_file(&fimg, fname, 0);
|
||||
|
@ -3,8 +3,6 @@
|
||||
COPT = -Wall -fpic -g -DDEBUG_LEVEL=1
|
||||
DEPS = ../floatimg.h ../libfloatimg.a Makefile
|
||||
|
||||
all: grabvidseq t
|
||||
|
||||
t: t.c Makefile ${DEPS} funcs.o
|
||||
gcc ${COPT} $< funcs.o ../libfloatimg.a -o $@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user