aboutsummaryrefslogtreecommitdiffstats
path: root/pflib.h
blob: b70c313acfd5b27334a27df1a7e4e840dd89eb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __QEMU_PFLIB_H
#define __QEMU_PFLIB_H

/*
 * PixelFormat conversion library.
 *
 * Author: Gerd Hoffmann <kraxel@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

typedef struct QemuPfConv QemuPfConv;

QemuPfConv *qemu_pf_conv_get(PixelFormat *dst, PixelFormat *src);
void qemu_pf_conv_run(QemuPfConv *conv, void *dst, void *src, uint32_t cnt);
void qemu_pf_conv_put(QemuPfConv *conv);

#endif