diff options
author | Jee-Yong Um <jc9.um@samsung.com> | 2016-12-20 16:06:20 -0800 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2016-12-20 16:39:30 -0800 |
commit | f1ab136abc7bc1b0a075f8da369cd61ab71b3a3b (patch) | |
tree | 615052d67aef79e21044f82ba87134f1acdc6632 | |
parent | 4e9656feacee2e00785d21d68bed5d3400c198be (diff) |
doxygen: remove reference warnings.
Reviewers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4503
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r-- | src/lib/ecore_buffer/Ecore_Buffer.h | 2 | ||||
-rw-r--r-- | src/lib/eet/Eet.h | 4 | ||||
-rw-r--r-- | src/lib/eina/eina_matrix.h | 13 | ||||
-rw-r--r-- | src/lib/eina/eina_rectangle.h | 2 | ||||
-rw-r--r-- | src/lib/eina/eina_thread.h | 2 | ||||
-rw-r--r-- | src/lib/eio/Eio_Legacy.h | 3 | ||||
-rw-r--r-- | src/lib/evas/Evas_GL.h | 14 |
7 files changed, 20 insertions, 20 deletions
diff --git a/src/lib/ecore_buffer/Ecore_Buffer.h b/src/lib/ecore_buffer/Ecore_Buffer.h index 36c82daad7..74a9b3a48a 100644 --- a/src/lib/ecore_buffer/Ecore_Buffer.h +++ b/src/lib/ecore_buffer/Ecore_Buffer.h | |||
@@ -393,7 +393,7 @@ typedef enum _Ecore_Export_Type Ecore_Export_Type; | |||
393 | */ | 393 | */ |
394 | typedef unsigned int Ecore_Buffer_Format; | 394 | typedef unsigned int Ecore_Buffer_Format; |
395 | /** | 395 | /** |
396 | * @typedef Ecore_Buffer_Pixmap | 396 | * @typedef Ecore_Pixmap |
397 | * An Id of Pixmap. | 397 | * An Id of Pixmap. |
398 | * @since 1.15 | 398 | * @since 1.15 |
399 | */ | 399 | */ |
diff --git a/src/lib/eet/Eet.h b/src/lib/eet/Eet.h index 19ab574458..f2ef50c42a 100644 --- a/src/lib/eet/Eet.h +++ b/src/lib/eet/Eet.h | |||
@@ -478,7 +478,7 @@ typedef enum _Eet_File_Mode | |||
478 | } Eet_File_Mode; /**< Modes that a file can be opened. */ | 478 | } Eet_File_Mode; /**< Modes that a file can be opened. */ |
479 | 479 | ||
480 | /** | 480 | /** |
481 | * @enum _Eet_Image_Encoding | 481 | * @enum Eet_Image_Encoding |
482 | * Specify lossy encoding for image | 482 | * Specify lossy encoding for image |
483 | * @since 1.10 | 483 | * @since 1.10 |
484 | */ | 484 | */ |
@@ -524,7 +524,7 @@ typedef struct _Eet_File Eet_File; | |||
524 | typedef struct _Eet_Dictionary Eet_Dictionary; | 524 | typedef struct _Eet_Dictionary Eet_Dictionary; |
525 | 525 | ||
526 | /** | 526 | /** |
527 | * @typedef Eet_Entries | 527 | * @typedef Eet_Entry |
528 | * 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(). | 528 | * 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(). |
529 | * | 529 | * |
530 | * @see eet_list_entries() | 530 | * @see eet_list_entries() |
diff --git a/src/lib/eina/eina_matrix.h b/src/lib/eina/eina_matrix.h index 2f9ad2157f..e851d5cf6e 100644 --- a/src/lib/eina/eina_matrix.h +++ b/src/lib/eina/eina_matrix.h | |||
@@ -40,7 +40,8 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | /** | 42 | /** |
43 | * @typedef Matrix3 types | 43 | * @typedef Eina_Matrix_Type |
44 | * Matrix3 types | ||
44 | */ | 45 | */ |
45 | typedef enum _Eina_Matrix_Type | 46 | typedef enum _Eina_Matrix_Type |
46 | { | 47 | { |
@@ -368,7 +369,7 @@ EAPI void eina_matrix3_scale(Eina_Matrix3 *t, double sx, double sy); | |||
368 | 369 | ||
369 | /** | 370 | /** |
370 | * Set the matrix values for a rotation | 371 | * Set the matrix values for a rotation |
371 | * @param[in] m The matrix to set the rotation values | 372 | * @param[in] t The matrix to set the rotation values |
372 | * @param[in] rad The radius to rotate the matrix | 373 | * @param[in] rad The radius to rotate the matrix |
373 | * | 374 | * |
374 | * @since 1.14 | 375 | * @since 1.14 |
@@ -500,8 +501,8 @@ EAPI void eina_matrix3_copy(Eina_Matrix3 *dst, const Eina_Matrix3 *src); | |||
500 | * @brief Multiply two matrix | 501 | * @brief Multiply two matrix |
501 | * | 502 | * |
502 | * @param out The resulting matrix | 503 | * @param out The resulting matrix |
503 | * @param a The first member of the multiplication | 504 | * @param mat_a The first member of the multiplication |
504 | * @param b The second member of the multiplication | 505 | * @param mat_b The second member of the multiplication |
505 | * | 506 | * |
506 | * @since 1.17 | 507 | * @since 1.17 |
507 | */ | 508 | */ |
@@ -512,8 +513,8 @@ EAPI void eina_matrix3_multiply(Eina_Matrix3 *out, const Eina_Matrix3 *mat_a, | |||
512 | * @brief Multiply two matrix | 513 | * @brief Multiply two matrix |
513 | * | 514 | * |
514 | * @param out The resulting matrix | 515 | * @param out The resulting matrix |
515 | * @param a The first member of the multiplication | 516 | * @param mat_a The first member of the multiplication |
516 | * @param b The second member of the multiplication | 517 | * @param mat_b The second member of the multiplication |
517 | * | 518 | * |
518 | * @since 1.17 | 519 | * @since 1.17 |
519 | */ | 520 | */ |
diff --git a/src/lib/eina/eina_rectangle.h b/src/lib/eina/eina_rectangle.h index fce0470186..fcde85eb7f 100644 --- a/src/lib/eina/eina_rectangle.h +++ b/src/lib/eina/eina_rectangle.h | |||
@@ -62,7 +62,7 @@ typedef struct _Eina_Rectangle | |||
62 | typedef struct _Eina_Rectangle_Pool Eina_Rectangle_Pool; | 62 | typedef struct _Eina_Rectangle_Pool Eina_Rectangle_Pool; |
63 | 63 | ||
64 | /** | 64 | /** |
65 | * @typedef Eina_Rectangle_Pool_Type | 65 | * @typedef Eina_Rectangle_Packing |
66 | * Type for an Eina Pool based on packing algorithm. | 66 | * Type for an Eina Pool based on packing algorithm. |
67 | * @since 1.11 | 67 | * @since 1.11 |
68 | */ | 68 | */ |
diff --git a/src/lib/eina/eina_thread.h b/src/lib/eina/eina_thread.h index d7a9ad34d6..067e69bbb4 100644 --- a/src/lib/eina/eina_thread.h +++ b/src/lib/eina/eina_thread.h | |||
@@ -57,7 +57,7 @@ typedef uintptr_t Eina_Thread; | |||
57 | typedef void *(*Eina_Thread_Cb)(void *data, Eina_Thread t); | 57 | typedef void *(*Eina_Thread_Cb)(void *data, Eina_Thread t); |
58 | 58 | ||
59 | /** | 59 | /** |
60 | * @typedef Eina_Thead_Priority | 60 | * @typedef Eina_Thread_Priority |
61 | * Type to enumerate different thread priorities | 61 | * Type to enumerate different thread priorities |
62 | */ | 62 | */ |
63 | typedef enum _Eina_Thread_Priority | 63 | typedef enum _Eina_Thread_Priority |
diff --git a/src/lib/eio/Eio_Legacy.h b/src/lib/eio/Eio_Legacy.h index 833a21499d..571549b0bd 100644 --- a/src/lib/eio/Eio_Legacy.h +++ b/src/lib/eio/Eio_Legacy.h | |||
@@ -39,7 +39,7 @@ extern "C" { | |||
39 | * | 39 | * |
40 | * The Eio library is a library that implements an API for asynchronous | 40 | * The Eio library is a library that implements an API for asynchronous |
41 | * input/output operation. Most operations are done in a separate thread | 41 | * input/output operation. Most operations are done in a separate thread |
42 | * to prevent lock. See @ref Eio_Group. Some helper to work on data | 42 | * to prevent lock. See @ref Eio. Some helper to work on data |
43 | * received in Eio callback are also provided see @ref Eio_Helper. | 43 | * received in Eio callback are also provided see @ref Eio_Helper. |
44 | * It is also possible to work asynchronously on Eina_File with @ref Eio_Map | 44 | * It is also possible to work asynchronously on Eina_File with @ref Eio_Map |
45 | * or on Eet_File with @ref Eio_Eet. It comes with way to manipulate | 45 | * 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, | |||
360 | 360 | ||
361 | /** | 361 | /** |
362 | * @defgroup Eio_Management Eio file management API. | 362 | * @defgroup Eio_Management Eio file management API. |
363 | * @ingroup Eio | ||
363 | * | 364 | * |
364 | * @brief A set of function to manage file asynchronously. | 365 | * @brief A set of function to manage file asynchronously. |
365 | * | 366 | * |
diff --git a/src/lib/evas/Evas_GL.h b/src/lib/evas/Evas_GL.h index e4ce2d1496..8669c92172 100644 --- a/src/lib/evas/Evas_GL.h +++ b/src/lib/evas/Evas_GL.h | |||
@@ -5041,8 +5041,7 @@ struct _Evas_GL_API | |||
5041 | * Evas GL will use the same EGLDisplay as used in the create function. | 5041 | * Evas GL will use the same EGLDisplay as used in the create function. |
5042 | */ | 5042 | */ |
5043 | void (*evasglDestroyImage) (EvasGLImage image); | 5043 | void (*evasglDestroyImage) (EvasGLImage image); |
5044 | 5044 | /** @} */ | |
5045 | |||
5046 | 5045 | ||
5047 | // ---------------------------------------------------------------------- // | 5046 | // ---------------------------------------------------------------------- // |
5048 | /* Evas_GL_API version 2: */ | 5047 | /* Evas_GL_API version 2: */ |
@@ -5347,7 +5346,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext | |||
5347 | /* GL_QCOM_tiled_rendering */ | 5346 | /* GL_QCOM_tiled_rendering */ |
5348 | void (*glStartTilingQCOM) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); | 5347 | void (*glStartTilingQCOM) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); |
5349 | void (*glEndTilingQCOM) (GLbitfield preserveMask); | 5348 | void (*glEndTilingQCOM) (GLbitfield preserveMask); |
5350 | 5349 | /** @} */ | |
5351 | 5350 | ||
5352 | /*------- EvasGL / EGL-related functions -------*/ | 5351 | /*------- EvasGL / EGL-related functions -------*/ |
5353 | /** | 5352 | /** |
@@ -5453,8 +5452,6 @@ EvasGLImage *img = glapi->evasglCreateImageForContext | |||
5453 | int (*evasglWaitSync) (Evas_GL *evas_gl, EvasGLSync sync, int flags); | 5452 | int (*evasglWaitSync) (Evas_GL *evas_gl, EvasGLSync sync, int flags); |
5454 | /** @} */ | 5453 | /** @} */ |
5455 | 5454 | ||
5456 | |||
5457 | |||
5458 | // ---------------------------------------------------------------------- // | 5455 | // ---------------------------------------------------------------------- // |
5459 | /* Evas_GL_API version 3: */ | 5456 | /* Evas_GL_API version 3: */ |
5460 | 5457 | ||
@@ -5481,6 +5478,7 @@ EvasGLImage *img = glapi->evasglCreateImageForContext | |||
5481 | */ | 5478 | */ |
5482 | Eina_Bool (*evasglQueryWaylandBuffer) (Evas_GL *evas_gl, void *buffer, int attribute, int *value); | 5479 | Eina_Bool (*evasglQueryWaylandBuffer) (Evas_GL *evas_gl, void *buffer, int attribute, int *value); |
5483 | /** @} */ | 5480 | /** @} */ |
5481 | |||
5484 | // ---------------------------------------------------------------------- // | 5482 | // ---------------------------------------------------------------------- // |
5485 | /** | 5483 | /** |
5486 | * @anchor gles3 | 5484 | * @anchor gles3 |
@@ -5684,6 +5682,9 @@ EvasGLImage *img = glapi->evasglCreateImageForContext | |||
5684 | */ | 5682 | */ |
5685 | }; | 5683 | }; |
5686 | 5684 | ||
5685 | /** | ||
5686 | * @} | ||
5687 | */ | ||
5687 | 5688 | ||
5688 | #ifdef __cplusplus | 5689 | #ifdef __cplusplus |
5689 | } | 5690 | } |
@@ -5693,6 +5694,3 @@ EvasGLImage *img = glapi->evasglCreateImageForContext | |||
5693 | #define EAPI | 5694 | #define EAPI |
5694 | 5695 | ||
5695 | #endif | 5696 | #endif |
5696 | /** | ||
5697 | * @} | ||
5698 | */ | ||