15 lines
479 B
C
15 lines
479 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "types.h"
|
|
|
|
uint32_t *generate_wallpaper(const wallpaper_config_t *wallpaper_config,
|
|
const monitor_t *monitors, const uint32_t index,
|
|
const uint32_t screen_width,
|
|
const uint32_t screen_height);
|
|
|
|
uint32_t get_font_height(const char *font_family, const uint32_t font_size,
|
|
const uint32_t dpi);
|
|
void clean_pango_context(void);
|