ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
sve.h
Go to the documentation of this file.
1#pragma once
2
18#include "video/image.h" // For image_t type
19
20#if SIMD_SUPPORT_SVE
21#if (defined(__aarch64__) && !defined(__ARM_FEATURE_SVE))
22#error "SVE support required for ARM64"
23#endif
24#include <arm_sve.h>
25
34char *render_ascii_image_monochrome_sve(const image_t *image, const char *ascii_chars);
35
46char *render_ascii_sve_unified_optimized(const image_t *image, bool use_background, bool use_256color,
47 const char *ascii_chars);
48
54void sve_caches_destroy(void);
55
56#endif /* SIMD_SUPPORT_SVE */
57
Image structure.
Image Data Structures and Operations.