mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 09:09:03 -04:00
[docs] minor fix & update
This commit is contained in:
parent
6a72035184
commit
2a01b305b6
2
USAGE.md
2
USAGE.md
@ -321,7 +321,7 @@ unsigned notcurses_palette_size(const struct notcurses* nc);
|
||||
bool notcurses_canfade(const struct notcurses* nc);
|
||||
|
||||
// Can we directly specify RGB values per cell, or only use palettes?
|
||||
bool notcurses_can_truecolor(const struct notcurses* nc);
|
||||
bool notcurses_cantruecolor(const struct notcurses* nc);
|
||||
|
||||
// Can we load images? This requires being built against FFmpeg/OIIO.
|
||||
bool notcurses_canopen_images(const struct notcurses* nc);
|
||||
|
@ -333,6 +333,8 @@ ncchannels_set_fchannel(uint64_t* channels, uint32_t channel){
|
||||
return *channels = (*channels & 0xfffffffflu) | ((uint64_t)channel << 32u);
|
||||
}
|
||||
|
||||
// Creates a new channel pair using 'fchan' as the foreground channel
|
||||
// and 'bchan' as the background channel.
|
||||
static inline uint64_t
|
||||
ncchannels_combine(uint32_t fchan, uint32_t bchan){
|
||||
uint64_t channels = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user