doxygen: remove reference warnings.

Reviewers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4503

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Jee-Yong Um 2016-12-20 16:06:20 -08:00 committed by Cedric BAIL
parent 4e9656feac
commit f1ab136abc
7 changed files with 20 additions and 20 deletions

View File

@ -393,7 +393,7 @@ typedef enum _Ecore_Export_Type Ecore_Export_Type;
*/
typedef unsigned int Ecore_Buffer_Format;
/**
* @typedef Ecore_Buffer_Pixmap
* @typedef Ecore_Pixmap
* An Id of Pixmap.
* @since 1.15
*/

View File

@ -478,7 +478,7 @@ typedef enum _Eet_File_Mode
} Eet_File_Mode; /**< Modes that a file can be opened. */
/**
* @enum _Eet_Image_Encoding
* @enum Eet_Image_Encoding
* Specify lossy encoding for image
* @since 1.10
*/
@ -524,7 +524,7 @@ typedef struct _Eet_File Eet_File;
typedef struct _Eet_Dictionary Eet_Dictionary;
/**
* @typedef Eet_Entries
* @typedef Eet_Entry
* Eet files may contains multiple Entries per file, this handle describe them. You can get that handle from an iterator given by eet_list_entries().
*
* @see eet_list_entries()

View File

@ -40,7 +40,8 @@
*/
/**
* @typedef Matrix3 types
* @typedef Eina_Matrix_Type
* Matrix3 types
*/
typedef enum _Eina_Matrix_Type
{
@ -368,7 +369,7 @@ EAPI void eina_matrix3_scale(Eina_Matrix3 *t, double sx, double sy);
/**
* Set the matrix values for a rotation
* @param[in] m The matrix to set the rotation values
* @param[in] t The matrix to set the rotation values
* @param[in] rad The radius to rotate the matrix
*
* @since 1.14
@ -500,8 +501,8 @@ EAPI void eina_matrix3_copy(Eina_Matrix3 *dst, const Eina_Matrix3 *src);
* @brief Multiply two matrix
*
* @param out The resulting matrix
* @param a The first member of the multiplication
* @param b The second member of the multiplication
* @param mat_a The first member of the multiplication
* @param mat_b The second member of the multiplication
*
* @since 1.17
*/
@ -512,8 +513,8 @@ EAPI void eina_matrix3_multiply(Eina_Matrix3 *out, const Eina_Matrix3 *mat_a,
* @brief Multiply two matrix
*
* @param out The resulting matrix
* @param a The first member of the multiplication
* @param b The second member of the multiplication
* @param mat_a The first member of the multiplication
* @param mat_b The second member of the multiplication
*
* @since 1.17
*/

View File

@ -62,7 +62,7 @@ typedef struct _Eina_Rectangle
typedef struct _Eina_Rectangle_Pool Eina_Rectangle_Pool;
/**
* @typedef Eina_Rectangle_Pool_Type
* @typedef Eina_Rectangle_Packing
* Type for an Eina Pool based on packing algorithm.
* @since 1.11
*/

View File

@ -57,7 +57,7 @@ typedef uintptr_t Eina_Thread;
typedef void *(*Eina_Thread_Cb)(void *data, Eina_Thread t);
/**
* @typedef Eina_Thead_Priority
* @typedef Eina_Thread_Priority
* Type to enumerate different thread priorities
*/
typedef enum _Eina_Thread_Priority

View File

@ -39,7 +39,7 @@ extern "C" {
*
* The Eio library is a library that implements an API for asynchronous
* input/output operation. Most operations are done in a separate thread
* to prevent lock. See @ref Eio_Group. Some helper to work on data
* to prevent lock. See @ref Eio. Some helper to work on data
* received in Eio callback are also provided see @ref Eio_Helper.
* It is also possible to work asynchronously on Eina_File with @ref Eio_Map
* or on Eet_File with @ref Eio_Eet. It comes with way to manipulate
@ -360,6 +360,7 @@ EAPI Eio_File *eio_file_direct_stat(const char *path,
/**
* @defgroup Eio_Management Eio file management API.
* @ingroup Eio
*
* @brief A set of function to manage file asynchronously.
*

View File

@ -5041,8 +5041,7 @@ struct _Evas_GL_API
* Evas GL will use the same EGLDisplay as used in the create function.
*/
void (*evasglDestroyImage) (EvasGLImage image);
/** @} */
// ---------------------------------------------------------------------- //
/* Evas_GL_API version 2: */
@ -5347,7 +5346,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
/* GL_QCOM_tiled_rendering */
void (*glStartTilingQCOM) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask);
void (*glEndTilingQCOM) (GLbitfield preserveMask);
/** @} */
/*------- EvasGL / EGL-related functions -------*/
/**
@ -5453,8 +5452,6 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
int (*evasglWaitSync) (Evas_GL *evas_gl, EvasGLSync sync, int flags);
/** @} */
// ---------------------------------------------------------------------- //
/* Evas_GL_API version 3: */
@ -5481,6 +5478,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
*/
Eina_Bool (*evasglQueryWaylandBuffer) (Evas_GL *evas_gl, void *buffer, int attribute, int *value);
/** @} */
// ---------------------------------------------------------------------- //
/**
* @anchor gles3
@ -5684,6 +5682,9 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
*/
};
/**
* @}
*/
#ifdef __cplusplus
}
@ -5693,6 +5694,3 @@ EvasGLImage *img = glapi->evasglCreateImageForContext
#define EAPI
#endif
/**
* @}
*/