~~Title: Efl.Gfx.Image_Scale_Hint~~ ===== Description ===== %%How an image's data is to be treated by EFL, with regard to scaling cache.%% //Since 1.23// {{page>:develop:api-include:efl:gfx:image_scale_hint:description&nouser&nolink&nodate}} ===== Fields ===== {{page>:develop:api-include:efl:gfx:image_scale_hint:fields&nouser&nolink&nodate}} * **none** - %%No hint on the scaling (default).%% * **dynamic** - %%Image will be re-scaled over time, thus turning scaling cache OFF for its data.%% * **static** - %%Image will not be re-scaled over time, thus turning scaling cache ON for its data.%% ===== Signature ===== enum Efl.Gfx.Image_Scale_Hint { none: 0, dynamic: 1, static: 2 } ===== C signature ===== typedef enum { EFL_GFX_IMAGE_SCALE_HINT_NONE = 0, EFL_GFX_IMAGE_SCALE_HINT_DYNAMIC = 1, EFL_GFX_IMAGE_SCALE_HINT_STATIC = 2 } Efl_Gfx_Image_Scale_Hint;