Evas filters: Remove overrides of methods from Evas.Filter

Welp that was stupid to add them in the first place...
This commit is contained in:
Jean-Philippe Andre 2015-06-23 15:21:45 +09:00
parent 068b9d5a5f
commit f4825006b0
4 changed files with 0 additions and 60 deletions

View File

@ -938,10 +938,6 @@ class Evas.Image (Evas.Object, Efl.File, Efl.Image, Efl.Gfx.Fill, Efl.Gfx.View,
Efl.Gfx.View.size.set;
Efl.Gfx.View.size.get;
Efl.Gfx.Filter.program.set;
Efl.Gfx.Filter.program.get;
Efl.Gfx.Filter.source_set;
Efl.Gfx.Filter.source_get;
Efl.Gfx.Filter.state.set;
Evas.Filter.input_alpha;
Evas.Filter.input_render;
Evas.Filter.dirty;

View File

@ -4735,30 +4735,4 @@ _evas_image_efl_gfx_filter_program_set(Eo *obj, Evas_Image_Data *pd EINA_UNUSED,
eo_do_super(obj, MY_CLASS, efl_gfx_filter_program_set(code, name));
}
EOLIAN void
_evas_image_efl_gfx_filter_program_get(Eo *obj, Evas_Image_Data *pd EINA_UNUSED, const char **code, const char **name)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_program_get(code, name));
}
EOLIAN void
_evas_image_efl_gfx_filter_source_set(Eo *obj, Evas_Image_Data *pd EINA_UNUSED, const char *name, Efl_Gfx_Base *source)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_source_set(name, source));
}
EOLIAN void
_evas_image_efl_gfx_filter_source_get(Eo *obj, Evas_Image_Data *pd EINA_UNUSED, const char *name, Efl_Gfx_Base **source)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_source_get(name, source));
}
EOLIAN void
_evas_image_efl_gfx_filter_state_set(Eo *obj, Evas_Image_Data *pd EINA_UNUSED,
const char *cur_state, double cur_val,
const char *next_state, double next_val, double pos)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_state_set(cur_state, cur_val, next_state, next_val, pos));
}
#include "canvas/evas_image.eo.c"

View File

@ -2233,30 +2233,4 @@ _evas_text_efl_gfx_filter_program_set(Eo *obj, Evas_Text_Data *pd EINA_UNUSED, c
eo_do_super(obj, MY_CLASS, efl_gfx_filter_program_set(code, name));
}
EOLIAN void
_evas_text_efl_gfx_filter_program_get(Eo *obj, Evas_Text_Data *pd EINA_UNUSED, const char **code, const char **name)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_program_get(code, name));
}
EOLIAN void
_evas_text_efl_gfx_filter_source_set(Eo *obj, Evas_Text_Data *pd EINA_UNUSED, const char *name, Efl_Gfx_Base *source)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_source_set(name, source));
}
EOLIAN void
_evas_text_efl_gfx_filter_source_get(Eo *obj, Evas_Text_Data *pd EINA_UNUSED, const char *name, Efl_Gfx_Base **source)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_source_get(name, source));
}
EOLIAN void
_evas_text_efl_gfx_filter_state_set(Eo *obj, Evas_Text_Data *pd EINA_UNUSED,
const char *cur_state, double cur_val,
const char *next_state, double next_val, double pos)
{
eo_do_super(obj, MY_CLASS, efl_gfx_filter_state_set(cur_state, cur_val, next_state, next_val, pos));
}
#include "canvas/evas_text.eo.c"

View File

@ -327,10 +327,6 @@ class Evas.Text (Evas.Object, Efl.Text, Efl.Text_Properties, Evas.Filter)
Efl.Text_Properties.font_source.get;
Efl.Text_Properties.font_source.set;
Efl.Gfx.Filter.program.set;
Efl.Gfx.Filter.program.get;
Efl.Gfx.Filter.source_set;
Efl.Gfx.Filter.source_get;
Efl.Gfx.Filter.state.set;
Evas.Filter.input_alpha;
Evas.Filter.input_render;
Evas.Filter.dirty;