提交 72aefb76 编写于 作者: C Corentin Chary 提交者: Anthony Liguori

vnc: palette: add palette_init calls

This allow to use palette on the stack instead of always
allocating them.
Signed-off-by: NCorentin Chary <corentincj@iksaif.net>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 e31e3694
......@@ -56,9 +56,15 @@ VncPalette *palette_new(size_t max, int bpp)
VncPalette *palette;
palette = qemu_mallocz(sizeof(*palette));
palette_init(palette, max, bpp);
return palette;
}
void palette_init(VncPalette *palette, size_t max, int bpp)
{
memset(palette, 0, sizeof (*palette));
palette->max = max;
palette->bpp = bpp;
return palette;
}
void palette_destroy(VncPalette *palette)
......
......@@ -51,6 +51,7 @@ typedef struct VncPalette {
} VncPalette;
VncPalette *palette_new(size_t max, int bpp);
void palette_init(VncPalette *palette, size_t max, int bpp);
void palette_destroy(VncPalette *palette);
int palette_put(VncPalette *palette, uint32_t color);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册