Update doxygen

This commit is contained in:
2018-12-10 19:16:07 +01:00
parent eaf692e046
commit 2a860ab949
3 changed files with 20 additions and 0 deletions

View File

@@ -178,6 +178,15 @@ static void render_cell(struct gds_cell *cell, struct cairo_layer *layers, doubl
}
/**
* @brief Toplevel function of cairo output renderer
* @param cell Cell to render
* @param layer_infos Layer information
* @param pdf_file Destination PDF file
* @param svg_file Destination SVG file
* @param scale Image will be scaled by scale^-1
* @warning SVG output doesn't behave as expected
*/
void cairo_render_cell_to_vector_file(struct gds_cell *cell, GList *layer_infos, char *pdf_file, char *svg_file, double scale)
{
cairo_surface_t *pdf_surface, *svg_surface;