Efl.Gfx.Filter (interface)

Description

Graphical filters can be applied to any object implementing this interface.

Filters are programmable effects that run whenever the object is rendered on its canvas. The program language is Lua and a complete reference can be found under "EFL Graphics Filters".

This was a beta feature since 1.15.

Members

filter_data (get, set)

Extra data used by the filter program.
void efl_gfx_filter_data_get(const Eo *obj, const char *name, const char **value, Eina_Bool *execute);
void efl_gfx_filter_data_set(Eo *obj, const char *name, const char *value, Eina_Bool execute);


filter_padding (get)

void efl_gfx_filter_padding_get(const Eo *obj, int *l, int *r, int *t, int *b);


filter_program (get, set)

A graphical filter program on this object.
void efl_gfx_filter_program_get(const Eo *obj, const char **code, const char **name);
void efl_gfx_filter_program_set(Eo *obj, const char *code, const char *name);


filter_source (get, set)

Bind an object to use as a mask or texture in a filter program.
Efl_Gfx_Entity *efl_gfx_filter_source_get(const Eo *obj, const char *name);
void efl_gfx_filter_source_set(Eo *obj, const char *name, Efl_Gfx_Entity *source);


filter_state (get, set)

Set the current state of the filter.
void efl_gfx_filter_state_get(const Eo *obj, const char **cur_state, double *cur_val, const char **next_state, double *next_val, double *pos);
void efl_gfx_filter_state_set(Eo *obj, const char *cur_state, double cur_val, const char *next_state, double next_val, double pos);


Events