mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
8 lines
201 B
C
8 lines
201 B
C
#include <cairo.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
cairo_surface_t *surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 600, 400);
|
|
cairo_t *context = cairo_create(surface);
|
|
return 0;
|
|
}
|