// vi:ft=cpp
/*
 * (c) 2010 Alexander Warg <warg@os.inf.tu-dresden.de>
 *     economic rights: Technische Universität Dresden (Germany)
 *
 * This file is part of TUD:OS and distributed under the terms of the
 * GNU General Public License 2.
 * Please see the COPYING-GPL-2 file for details.
 */
#pragma once

namespace Mag_gfx { namespace Blit {

void blit(void const *src, unsigned src_w,
          void *dst, unsigned dst_w,
          int w, int h);

}}

