mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
System daemons: hotkeys (volume/brightness), automount, bluetooth agent, memory manager, sleep/suspend, USB gadget mode, save-config persistence. Boot splash: initramfs SVG renderer (fbsplash + svg_parser) for 0.7s splash. Panel tools: generate-panel-dtbos.sh rewrite, convert-panel.py for ROCKNIX panel data extraction, archr-dtbo.py for runtime overlay management. Input: archr-gptokeyb.c gamepad-to-keyboard mapper via uinput. Launch wrappers: emulationstation.sh and retroarch-launch.sh updated for KMS/DRM + Mesa 26 Panfrost environment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
219 B
C
11 lines
219 B
C
#ifndef SVG_PARSER_H
|
|
#define SVG_PARSER_H
|
|
|
|
#include "svg_types.h"
|
|
|
|
SVGPath* parse_svg_path(const char *path_data, const char *style);
|
|
void free_svg_path(SVGPath *path);
|
|
Color parse_color(const char *color_str);
|
|
|
|
#endif
|