blob: d48e9dd3d9eb3a44f36081539536c1a530e1fee9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <cairo/cairo.h>
int
blur_surface(cairo_surface_t *surface, int margin);
void
render_shadow(cairo_t *cr, cairo_surface_t *surface,
int x, int y, int width, int height, int margin, int top_margin);
|