Parcourir la source

* doc/doxygen.cfg.in:

+ Removed caca_internal.h from the list of documented files.
  * src/:
    + Minor documentation updates.
tags/v0.99.beta14
Sam Hocevar sam il y a 21 ans
Parent
révision
44fc7a04b5
10 fichiers modifiés avec 20 ajouts et 20 suppressions
  1. +1
    -1
      doc/doxygen.cfg.in
  2. +1
    -1
      src/bitmap.c
  3. +1
    -1
      src/box.c
  4. +11
    -11
      src/caca.h
  5. +1
    -1
      src/conic.c
  6. +1
    -1
      src/graphics.c
  7. +1
    -1
      src/io.c
  8. +1
    -1
      src/line.c
  9. +1
    -1
      src/math.c
  10. +1
    -1
      src/triangle.c

+ 1
- 1
doc/doxygen.cfg.in Voir le fichier

@@ -63,7 +63,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
INPUT = @top_srcdir@/src
FILE_PATTERNS = *.c \
*.h
caca.h
RECURSIVE = YES
EXCLUDE = ../src/config.h
EXCLUDE_SYMLINKS = NO


+ 1
- 1
src/bitmap.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file bitmap.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Bitmap functions
* \brief Bitmap blitting
*
* This file contains bitmap blitting functions.
*/


+ 1
- 1
src/box.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file box.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Simple box drawing functions
* \brief Simple box drawing
*
* This file contains box drawing functions, both filled and outline.
*/


+ 11
- 11
src/caca.h Voir le fichier

@@ -104,7 +104,7 @@ extern "C"

/** \brief Colour definitions.
*
* This enum lists all colours that can be used with caca_set_color().
* Colours that can be used with caca_set_color().
*/
enum caca_color
{
@@ -128,8 +128,8 @@ enum caca_color

/** \brief Internal features.
*
* This enum lists all possible internal libcaca features such as the
* rendering method or the dithering mode.
* Internal libcaca features such as the rendering method or the dithering
* mode.
*/
enum caca_feature
{
@@ -171,7 +171,7 @@ enum caca_feature

/** \brief User events.
*
* This enum lists all possible event types returned by caca_get_event().
* Event types returned by caca_get_event().
*/
enum caca_event
{
@@ -185,8 +185,8 @@ enum caca_event

/** \brief Special key values.
*
* This enum lists special key values returned by caca_get_event() for
* which there is no ASCII equivalent.
* Special key values returned by caca_get_event() for which there is no
* ASCII equivalent.
*/
enum caca_key
{
@@ -230,7 +230,7 @@ void caca_refresh(void);
void caca_end(void);
/* @} */

/** \defgroup event Event handling functions
/** \defgroup event Event handling
*
* These functions handle user events such as keyboard input and mouse
* clicks.
@@ -240,7 +240,7 @@ unsigned int caca_get_event(void);
unsigned int caca_wait_event(void);
/* @} */

/** \defgroup char Character printing functions
/** \defgroup char Character printing
*
* These functions provide low-level character printing routines.
*
@@ -255,7 +255,7 @@ void caca_printf(int, int, const char *, ...);
void caca_clear(void);
/* @} */

/** \defgroup prim Primitives drawing functions
/** \defgroup prim Primitives drawing
*
* These functions provide routines for primitive drawing, such as lines,
* boxes, triangles and ellipses.
@@ -289,7 +289,7 @@ int caca_rand(int, int);
unsigned int caca_sqrt(unsigned int);
/* @} */

/** \defgroup sprite Sprite handling functions
/** \defgroup sprite Sprite handling
*
* These functions provide high level routines for sprite loading, animation
* and rendering.
@@ -306,7 +306,7 @@ void caca_draw_sprite(int, int, const struct caca_sprite *, int);
void caca_free_sprite(struct caca_sprite *);
/* @} */

/** \defgroup bitmap Bitmap handling functions
/** \defgroup bitmap Bitmap handling
*
* These functions provide high level routines for bitmap allocation and
* rendering.


+ 1
- 1
src/conic.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file conic.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Ellipse and circle drawing functions
* \brief Ellipse and circle drawing
*
* This file contains ellipse and circle drawing functions, both filled
* and outline.


+ 1
- 1
src/graphics.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file graphics.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Character drawing functions
* \brief Character drawing
*
* This file contains character and string drawing functions.
*/


+ 1
- 1
src/io.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file io.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Event handling functions
* \brief Event handling
*
* This file contains event handling functions for keyboard and mouse input.
*/


+ 1
- 1
src/line.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file line.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Line drawing functions
* \brief Line drawing
*
* This file contains line and polyline drawing functions, with both thin
* and thick styles.


+ 1
- 1
src/math.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file math.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Math functions
* \brief Math
*
* This file contains simple mathematical routines.
*/


+ 1
- 1
src/triangle.c Voir le fichier

@@ -22,7 +22,7 @@
/** \file triangle.c
* \version \$Id$
* \author Sam Hocevar <sam@zoy.org>
* \brief Triangle drawing functions
* \brief Triangle drawing
*
* This file contains triangle drawing functions, both filled and outline.
*/


Chargement…
Annuler
Enregistrer