doxygen fixes

ugfx_release_2.6
Joel Bodenmann 2013-11-10 21:30:56 +01:00
parent f73c1972ba
commit 48c2c7125b
3 changed files with 8 additions and 8 deletions

View File

@ -145,7 +145,7 @@ extern GDisplay *GDISP;
*/
/**
* @brief The pixel format.
* @default It generally defaults to the hardware pixel format.
* @details It generally defaults to the hardware pixel format.
* @note This doesn't need to match the hardware pixel format.
* It is definitely more efficient when it does.
* @note When GDISP_TOTAL_CONTROLLERS > 1, this must
@ -232,7 +232,7 @@ GDisplay *gdispGetDisplay(unsigned display);
* value.
* @note If a NULL is passed for the dispay this call is ignored.
*
* @param[in] display The display number (0..n)
* @param[in] g The display number (0..n)
*
* @api
*/
@ -254,7 +254,7 @@ void gdispSetDisplay(GDisplay *g);
* Calling it again won't hurt though.
*
*
* @param[in] display The display number (0..n)
* @param[in] g The display number (0..n)
*
* @api
*/

View File

@ -16,7 +16,7 @@
#ifndef _GDISP_LLD_H
#define _GDISP_LLD_H
#if GFX_USE_GDISP || defined(__DOXYGEN__)
#if GFX_USE_GDISP // || defined(__DOXYGEN__)
/*===========================================================================*/
/* Error checks. */
@ -277,8 +277,9 @@ struct GDisplay {
* @pre GDISP_HARDWARE_STREAM_WRITE is TRUE
*
* @param[in] g The driver structure
* @param[in] g->p.x,g->p.y The window position
* @param[in] g->p.cx,g->p.cy The window size
*
* @note g->p.x,g->p.y The window position
* @note g->p.cx,g->p.cy The window size
*
* @note The parameter variables must not be altered by the driver.
* @note Streaming operations that wrap the defined window have
@ -292,8 +293,8 @@ struct GDisplay {
* @pre GDISP_HARDWARE_STREAM_WRITE is TRUE
*
* @param[in] g The driver structure
* @param[in] g->p.color The color to display at the curent position
*
* @note g->p.color The color to display at the curent position
* @note The parameter variables must not be altered by the driver.
*/
LLDSPEC void gdisp_lld_write_color(GDisplay *g);

View File

@ -112,7 +112,6 @@ extern "C" {
* @return A pointer to the display
*
* @param[in] instance The ID of the mouse input instance
* @param[in] g The GDisplay to which this mouse belongs
*/
GDisplay *ginputGetMouseDisplay(uint16_t instance);