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
228 B
C
11 lines
228 B
C
#ifndef SVG_RENDERER_H
|
|
#define SVG_RENDERER_H
|
|
|
|
#include "fbsplash.h"
|
|
#include "svg_types.h"
|
|
|
|
void render_svg_path(Framebuffer *fb, SVGPath *svg, DisplayInfo *display_info);
|
|
void rotate_svg_path(SVGPath *svg, int angle);
|
|
|
|
#endif
|