mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-18 03:25:55 +00:00
s/8 bit/8-bit/g
This commit is contained in:
parent
e596f9230f
commit
26899f3544
@ -2380,19 +2380,19 @@ ncpixel_a(uint32_t pixel){
|
||||
return (pixel & 0xff000000ul) >> 24u;
|
||||
}
|
||||
|
||||
// Extract the 8 bit red component from a pixel
|
||||
// Extract the 8-bit red component from a pixel
|
||||
static inline unsigned
|
||||
ncpixel_r(uint32_t pixel){
|
||||
return (pixel & 0x000000fful);
|
||||
}
|
||||
|
||||
// Extract the 8 bit green component from a pixel
|
||||
// Extract the 8-bit green component from a pixel
|
||||
static inline unsigned
|
||||
ncpixel_g(uint32_t pixel){
|
||||
return (pixel & 0x00ff0000ul) >> 16u;
|
||||
}
|
||||
|
||||
// Extract the 8 bit blue component from a pixel
|
||||
// Extract the 8-bit blue component from a pixel
|
||||
static inline unsigned
|
||||
ncpixel_b(uint32_t pixel){
|
||||
return (pixel & 0x0000ff00ul) >> 8u;
|
||||
|
Loading…
Reference in New Issue
Block a user