blob: b70c313acfd5b27334a27df1a7e4e840dd89eb65 [file] [log] [blame]
Gerd Hoffmannd6d94fc2010-06-14 09:54:27 +02001#ifndef __QEMU_PFLIB_H
2#define __QEMU_PFLIB_H
3
4/*
5 * PixelFormat conversion library.
6 *
7 * Author: Gerd Hoffmann <kraxel@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14typedef struct QemuPfConv QemuPfConv;
15
16QemuPfConv *qemu_pf_conv_get(PixelFormat *dst, PixelFormat *src);
17void qemu_pf_conv_run(QemuPfConv *conv, void *dst, void *src, uint32_t cnt);
18void qemu_pf_conv_put(QemuPfConv *conv);
19
20#endif