add Test_Packbits()

This commit is contained in:
Thomas Bernard
2019-11-15 22:57:55 +01:00
parent cd1349fdab
commit 3ba4472626
6 changed files with 102 additions and 6 deletions

View File

@@ -54,6 +54,21 @@ void Set_pixel(T_IO_Context *context, short x, short y, byte c)
(void)c;
}
void Set_pixel_24b(T_IO_Context *context, short x, short y, byte r, byte g, byte b)
{
(void)context;
(void)x;
(void)y;
(void)r;
(void)g;
(void)b;
}
void Fill_canvas(T_IO_Context *context, byte color)
{
printf("Fill_canvas(%p, %hhu)\n", context, color);
}
void Set_saving_layer(T_IO_Context *context, int layer)
{
printf("Set_saving_layer(%p, %d)\n", context, layer);
@@ -73,3 +88,9 @@ void Set_frame_duration(T_IO_Context *context, int duration)
{
printf("Set_frame_duration(%p, %d)\n", context, duration);
}
int Get_frame_duration(T_IO_Context *context)
{
(void)context;
return 0;
}