mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
- Add a new function to get the maximum scale of all usable outputs - Pass the maximum output scale through to img_svg_load(), which ultimately calls cairo_surface_set_device_scale() before rendering
10 lines
246 B
C
10 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_IMG_SVG_H
|
|
#define LABWC_IMG_SVG_H
|
|
|
|
struct lab_data_buffer;
|
|
|
|
void img_svg_load(const char *filename, struct lab_data_buffer **buffer,
|
|
int size, float scale);
|
|
|
|
#endif /* LABWC_IMG_SVG_H */
|