mirror of
https://git.sr.ht/~calebccff/pbsplash
synced 2026-01-12 20:48:40 -09:00
* Move the animation between the logo and the text * Move text further below * Change circles to 3 (like ...) and increase speed to 5 * Change circles radius, distance, amplitude * Draw empty circles instead of full circles, to be used with a logo that also has an outline
15 lines
232 B
C
15 lines
232 B
C
#ifndef __pbsplash_h__
|
|
#define __pbsplash_h__
|
|
|
|
struct col {
|
|
union {
|
|
unsigned int rgba;
|
|
struct {
|
|
unsigned char r, g, b, a;
|
|
};
|
|
};
|
|
};
|
|
|
|
void animate_frame(int frame, int w, int y_off, long dpi);
|
|
|
|
#endif
|