ector: add a base interface for all cairo renderer.

This commit is contained in:
Cedric BAIL 2015-04-03 16:22:00 +02:00
parent 85036dbeb1
commit 33d538643a
2 changed files with 10 additions and 0 deletions

View File

@ -11,6 +11,7 @@ ector_eolian_files = \
# Handle cairo backend
ector_eolian_files += \
lib/ector/cairo/ector_cairo_surface.eo \
lib/ector/cairo/ector_renderer_cairo_base.eo \
lib/ector/cairo/ector_renderer_cairo_shape.eo \
lib/ector/cairo/ector_renderer_cairo_gradient_linear.eo \
lib/ector/cairo/ector_renderer_cairo_gradient_radial.eo

View File

@ -0,0 +1,9 @@
interface Ector.Renderer.Cairo.Base
{
legacy_prefix: null;
methods {
fill {
return: bool;
}
}
}