Changeset 298
- Timestamp:
- Dec 31, 2003, 3:21:08 PM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/doc/doxygen.cfg.in
r268 r298 64 64 INPUT = @top_srcdir@/src 65 65 FILE_PATTERNS = *.c \ 66 *.h66 caca.h 67 67 RECURSIVE = YES 68 68 EXCLUDE = ../src/config.h -
libcaca/trunk/src/bitmap.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Bitmap functions25 * \brief Bitmap blitting 26 26 * 27 27 * This file contains bitmap blitting functions. -
libcaca/trunk/src/box.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Simple box drawing functions25 * \brief Simple box drawing 26 26 * 27 27 * This file contains box drawing functions, both filled and outline. -
libcaca/trunk/src/caca.h
r287 r298 105 105 /** \brief Colour definitions. 106 106 * 107 * This enum lists all colours that can be used with caca_set_color().107 * Colours that can be used with caca_set_color(). 108 108 */ 109 109 enum caca_color … … 129 129 /** \brief Internal features. 130 130 * 131 * This enum lists all possible internal libcaca features such as the132 * rendering method or the ditheringmode.131 * Internal libcaca features such as the rendering method or the dithering 132 * mode. 133 133 */ 134 134 enum caca_feature … … 172 172 /** \brief User events. 173 173 * 174 * This enum lists all possible event types returned by caca_get_event().174 * Event types returned by caca_get_event(). 175 175 */ 176 176 enum caca_event … … 186 186 /** \brief Special key values. 187 187 * 188 * This enum lists special key values returned by caca_get_event() for189 * which there is noASCII equivalent.188 * Special key values returned by caca_get_event() for which there is no 189 * ASCII equivalent. 190 190 */ 191 191 enum caca_key … … 231 231 /* @} */ 232 232 233 /** \defgroup event Event handling functions233 /** \defgroup event Event handling 234 234 * 235 235 * These functions handle user events such as keyboard input and mouse … … 241 241 /* @} */ 242 242 243 /** \defgroup char Character printing functions243 /** \defgroup char Character printing 244 244 * 245 245 * These functions provide low-level character printing routines. … … 256 256 /* @} */ 257 257 258 /** \defgroup prim Primitives drawing functions258 /** \defgroup prim Primitives drawing 259 259 * 260 260 * These functions provide routines for primitive drawing, such as lines, … … 290 290 /* @} */ 291 291 292 /** \defgroup sprite Sprite handling functions292 /** \defgroup sprite Sprite handling 293 293 * 294 294 * These functions provide high level routines for sprite loading, animation … … 307 307 /* @} */ 308 308 309 /** \defgroup bitmap Bitmap handling functions309 /** \defgroup bitmap Bitmap handling 310 310 * 311 311 * These functions provide high level routines for bitmap allocation and -
libcaca/trunk/src/conic.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Ellipse and circle drawing functions25 * \brief Ellipse and circle drawing 26 26 * 27 27 * This file contains ellipse and circle drawing functions, both filled -
libcaca/trunk/src/graphics.c
r293 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Character drawing functions25 * \brief Character drawing 26 26 * 27 27 * This file contains character and string drawing functions. -
libcaca/trunk/src/io.c
r289 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Event handling functions25 * \brief Event handling 26 26 * 27 27 * This file contains event handling functions for keyboard and mouse input. -
libcaca/trunk/src/line.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Line drawing functions25 * \brief Line drawing 26 26 * 27 27 * This file contains line and polyline drawing functions, with both thin -
libcaca/trunk/src/math.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Math functions25 * \brief Math 26 26 * 27 27 * This file contains simple mathematical routines. -
libcaca/trunk/src/triangle.c
r268 r298 23 23 * \version \$Id$ 24 24 * \author Sam Hocevar <sam@zoy.org> 25 * \brief Triangle drawing functions25 * \brief Triangle drawing 26 26 * 27 27 * This file contains triangle drawing functions, both filled and outline.
Note: See TracChangeset
for help on using the changeset viewer.