notcurses_plane.3: correct some signatures #2571

pull/2576/head
nick black 2 years ago
parent f15fcac7f9
commit 9890346769
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -151,14 +151,22 @@ typedef struct ncplane_options {
**static inline unsigned ncplane_fchannel(struct ncplane* ***nc***);**
**static inline unsigned ncplane_fg_rgb8(struct ncplane* ***nc***);**
**static inline unsigned ncplane_fg_rgb(struct ncplane* ***nc***);**
**static inline unsigned ncplane_bg_rgb8(struct ncplane* ***nc***);**
**static inline unsigned ncplane_bg_rgb(struct ncplane* ***nc***);**
**int ncplane_set_fg_rgb(struct ncplane* ***n***, uint32_t ***channel***);**
**int ncplane_set_bg_rgb(struct ncplane* ***n***, uint32_t ***channel***);**
**static inline unsigned ncplane_fg_alpha(struct ncplane* ***nc***);**
**static inline unsigned ncplane_bg_alpha(struct ncplane* ***nc***);**
**int ncplane_set_fg_alpha(struct ncplane* ***n***, unsigned ***alpha***);**
**int ncplane_set_bg_alpha(struct ncplane* ***n***, unsigned ***alpha***);**
**static inline unsigned ncplane_fg_rgb8(struct ncplane* ***n***, unsigned* ***r***, unsigned* ***g***, unsigned* ***b***);**
**static inline unsigned ncplane_bg_rgb8(struct ncplane* ***n***, unsigned* ***r***, unsigned* ***g***, unsigned* ***b***);**
@ -171,18 +179,10 @@ typedef struct ncplane_options {
**void ncplane_set_bg_rgb8_clipped(struct ncplane* ***n***, int ***r***, int ***g***, int ***b***);**
**int ncplane_set_fg_rgb8(struct ncplane* ***n***, uint32_t ***channel***);**
**int ncplane_set_bg_rgb8(struct ncplane* ***n***, uint32_t ***channel***);**
**void ncplane_set_fg_default(struct ncplane* ***n***);**
**void ncplane_set_bg_default(struct ncplane* ***n***);**
**int ncplane_set_fg_alpha(struct ncplane* ***n***, unsigned ***alpha***);**
**int ncplane_set_bg_alpha(struct ncplane* ***n***, unsigned ***alpha***);**
**int ncplane_set_fg_palindex(struct ncplane* ***n***, unsigned ***idx***);**
**int ncplane_set_bg_palindex(struct ncplane* ***n***, unsigned ***idx***);**

Loading…
Cancel
Save