summaryrefslogtreecommitdiff
path: root/pflib.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-09-18 08:52:26 +0200
committerGerd Hoffmann <kraxel@redhat.com>2012-11-05 11:54:49 +0100
commit365b1e9e3486aaa55f30df6f16ecafffaef6ec98 (patch)
tree8bc68c730dfad180d340ff260b4545b2747b4385 /pflib.h
parentd9a86569ca3617a495ffb352e9a390747eaa6b24 (diff)
downloadqemu-365b1e9e3486aaa55f30df6f16ecafffaef6ec98.tar.gz
pflib: unused, remove it.
Replaced by pixman library. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'pflib.h')
-rw-r--r--pflib.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/pflib.h b/pflib.h
deleted file mode 100644
index b70c313acf..0000000000
--- a/pflib.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#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