X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Ftinyptc%2Fconvert.h;fp=bigscreen%2Ftinyptc%2Fconvert.h;h=021462b2104934bdeff5ad729436b47983fd6f61;hp=0000000000000000000000000000000000000000;hb=140a0aae7299d15459fe9ec74ad5020887e0a960;hpb=fd56777b1051147ba14850b72f1f959cd82a1827 diff --git a/bigscreen/tinyptc/convert.h b/bigscreen/tinyptc/convert.h new file mode 100644 index 0000000..021462b --- /dev/null +++ b/bigscreen/tinyptc/convert.h @@ -0,0 +1,53 @@ +/* + * TinyPTC x11 v0.7.3 Pixelformat converters + * Copyright (C) 2000-2002 Alessandro Gatti + * Copyright (C) 2000-2001 Glenn Fiedler + * + * http://www.sourceforge.net/projects/tinyptc/ + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#ifndef __TINYPTC_CONVERT_H +#define __TINYPTC_CONVERT_H + +/* include files */ +#include "tinyptc.h" + +#define __PTC_CONVERTER_32_TO_32_RGB888 +#define __PTC_CONVERTER_32_TO_32_BGR888 +#define __PTC_CONVERTER_32_TO_24_RGB888 +#define __PTC_CONVERTER_32_TO_24_BGR888 +#define __PTC_CONVERTER_32_TO_16_RGB565 +#define __PTC_CONVERTER_32_TO_16_BGR565 +#define __PTC_CONVERTER_32_TO_16_RGB555 +#define __PTC_CONVERTER_32_TO_16_BGR555 + +#ifdef __cplusplus + extern "C" { +#endif /* __cplusplus */ + +/* converter function type */ +typedef void (*PTC_CONVERTER) (void *src, void *dst, int pixels); + +/* converter request */ +PTC_CONVERTER ptc_request_converter (int bits, int32 r, int32 g, int32 b); + +#ifdef __cplusplus + } +#endif /* __cplusplus */ + +#endif /* __TINYPTC_CONVERT_H */