ector: update the render api eo signeture

This commit is contained in:
Subhransu Mohanty 2016-11-03 13:20:03 +09:00 committed by Jean-Philippe Andre
parent b1e5539005
commit 7c51b3de00
1 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ abstract Ector.Renderer (Efl.Object)
}
}
draw @virtual_pure {
return: bool @warn_unused;
return: bool;
params {
@in op: Efl.Gfx.Render_Op;
@in clips: array<ptr(Eina.Rectangle)>; [[array of @Eina.Rectangle clip]]
@ -119,12 +119,12 @@ abstract Ector.Renderer (Efl.Object)
}
}
prepare {
return: bool @warn_unused;
return: bool;
params {
}
}
done @virtual_pure {
return: bool @warn_unused;
return: bool;
}
}
implements {