update ncvisual_plane.3 for ncplane_as_rgba() #1441

This commit is contained in:
nick black 2021-06-15 22:24:48 -04:00 committed by Nick Black
parent 0d963f17a9
commit 3cf971ac67
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ rearrangements of Notcurses.
terminals, however, will be retrieved independently of `TERM`; they'll
be made available for use if supported by the connected terminal, and
others will not, even if your `TERM` variable implies they ought.
* `ncplane_as_rgba()`/`ncvisual_from_plane()` now support `NCBLIT_BRAILLE`.
* `CELL_ALPHA_*` macros are now `NCALPHA_*`. The former will remain
`#define`d until ABI3.

View File

@ -104,7 +104,7 @@ typedef struct ncplane_options {
**int ncplane_at_yx_cell(struct ncplane* ***n***, int ***y***, int ***x***, nccell* ***c***);**
**uint32_t* ncplane_as_rgba(const struct ncplane* ***nc***, int ***begy***, int ***begx***, int ***leny***, int ***lenx***, int* ***pxdimy***, int* ***pxdimx***);**
**uint32_t* ncplane_as_rgba(const struct ncplane* ***nc***, ncblitter_e ***blit***, int ***begy***, int ***begx***, int ***leny***, int ***lenx***, int* ***pxdimy***, int* ***pxdimx***);**
**char* ncplane_contents(const struct ncplane* ***nc***, int ***begy***, int ***begx***, int ***leny***, int ***lenx***);**