Eet: fix wrong doxygen definition

Summary:
Eet_Image_Encoding and Eet_Colorclass is from enumeration in Emile,
but it's definition is typedef, not enum.

It makes broken link like below webpage.
https://docs.enlightenment.org/efl/current/group__Eet__File__Image__Group.html

In above page, Eet_Image_Encoding is not linked.

So doxygen documentation should be changed to typedef.

Reviewers: cedric, jpeg, myoungwoon, conr2d

Differential Revision: https://phab.enlightenment.org/D5411
This commit is contained in:
JinYong Park 2017-11-01 13:08:58 +09:00 committed by Jean-Philippe Andre
parent b44889305a
commit a1935164fe
1 changed files with 2 additions and 2 deletions

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
* @typedef Eet_Image_Encoding
* Specify lossy encoding for image
* @since 1.10
*/
@ -492,7 +492,7 @@ typedef Emile_Image_Encoding Eet_Image_Encoding;
#define EET_IMAGE_ETC1_ALPHA EMILE_IMAGE_ETC1_ALPHA
/**
* @enum Eet_Colorspace
* @typedef Eet_Colorspace
* Specify colorspace for image
* @since 1.10
*/