18 lines
379 B
D
18 lines
379 B
D
|
|
module sixel;
|
||
|
|
|
||
|
|
import st;
|
||
|
|
import patches;
|
||
|
|
|
||
|
|
static if (isPatchEnabled!"SIXEL_PATCH") {
|
||
|
|
// Sixel graphics support implementation
|
||
|
|
|
||
|
|
enum DECSIXEL_PALETTE_MAX = 256;
|
||
|
|
enum DECSIXEL_WIDTH_MAX = 4096;
|
||
|
|
enum DECSIXEL_HEIGHT_MAX = 4096;
|
||
|
|
|
||
|
|
extern(C) {
|
||
|
|
void sixel_parser_init();
|
||
|
|
void sixel_parser_deinit();
|
||
|
|
void sixel_parser_parse();
|
||
|
|
}
|
||
|
|
}
|