|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- * libcucul Canvas for ultrafast compositing of Unicode letters
- * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
- * All Rights Reserved
- *
- * $Id$
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Do What The Fuck You Want To
- * Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- #ifndef __CUCUL_INTERNALS_H__
- #define __CUCUL_INTERNALS_H__
-
- #if defined(HAVE_INTTYPES_H) && !defined(__KERNEL__)
- # include <inttypes.h>
- #endif
-
- struct cucul_canvas
- {
- /* Canvas size */
- unsigned int width, height;
-
- /* Shortcut to the active frame */
- uint32_t *chars;
- uint32_t *attr;
-
- /* Frame information */
- unsigned int frame, framecount;
- uint32_t **allchars;
- uint32_t **allattr;
-
- /* Painting context */
- uint16_t fgcolor;
- uint16_t bgcolor;
-
- unsigned int refcount;
- };
-
- struct cucul_buffer
- {
- unsigned long int size;
- char *data;
- int user_data;
- };
-
- /* Bitmap functions */
- extern int _cucul_init_dither(void);
- extern int _cucul_end_dither(void);
-
- /* Canvas functions */
- extern int _cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int);
-
- /* Charset functions */
- extern unsigned int _cucul_strlen_utf8(char const *);
- extern char const *_cucul_skip_utf8(char const *, unsigned int);
-
- /* Colour functions */
- uint8_t _cucul_argb32_to_ansi8(uint32_t);
- uint8_t _cucul_argb32_to_ansi4fg(uint32_t);
- uint8_t _cucul_argb32_to_ansi4bg(uint32_t);
- uint16_t _cucul_argb32_to_rgb12fg(uint32_t);
- uint16_t _cucul_argb32_to_rgb12bg(uint32_t);
- uint32_t _cucul_argb32_to_rgb24fg(uint32_t);
- uint32_t _cucul_argb32_to_rgb24bg(uint32_t);
- void _cucul_argb32_to_argb4(uint32_t, uint8_t[8]);
-
- #endif /* __CUCUL_INTERNALS_H__ */
|