karbon
art_rgb_affine_private.h
00001 /* Libart_LGPL - library of basic graphic primitives 00002 * Copyright (C) 1998 Raph Levien 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Library General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Library General Public 00015 * License along with this library; if not, write to the 00016 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef __ART_RGB_AFFINE_PRIVATE_H__ 00021 #define __ART_RGB_AFFINE_PRIVATE_H__ 00022 00023 /* This module handles compositing of affine-transformed rgb images 00024 over rgb pixel buffers. */ 00025 00026 #ifdef __cplusplus 00027 extern "C" { 00028 #endif 00029 00030 void 00031 art_rgb_affine_run (int *p_x0, int *p_x1, int y, 00032 int src_width, int src_height, 00033 const double affine[6]); 00034 00035 #ifdef __cplusplus 00036 } 00037 #endif 00038 00039 #endif