pflib.h 496 B

1234567891011121314151617181920
  1. #ifndef __QEMU_PFLIB_H
  2. #define __QEMU_PFLIB_H
  3. /*
  4. * PixelFormat conversion library.
  5. *
  6. * Author: Gerd Hoffmann <kraxel@redhat.com>
  7. *
  8. * This work is licensed under the terms of the GNU GPL, version 2. See
  9. * the COPYING file in the top-level directory.
  10. *
  11. */
  12. typedef struct QemuPfConv QemuPfConv;
  13. QemuPfConv *qemu_pf_conv_get(PixelFormat *dst, PixelFormat *src);
  14. void qemu_pf_conv_run(QemuPfConv *conv, void *dst, void *src, uint32_t cnt);
  15. void qemu_pf_conv_put(QemuPfConv *conv);
  16. #endif