This commit is contained in:
twinaphex 2021-09-13 18:09:44 +02:00
parent 12f787547c
commit 2b08ebb677
3 changed files with 4 additions and 4 deletions

View File

@ -132,7 +132,7 @@ static INLINE float dot_product(const float* a, const float* b)
}
/**
* retro_rgb_to_yxy:
* convert_rgb_to_yxy:
* @rgb : in RGB colour space value
* @Yxy : out Yxy colour space value
*
@ -162,7 +162,7 @@ static INLINE void convert_rgb_to_yxy(const float* rgb, float* Yxy)
}
/**
* yxy_to_rgb:
* convert_yxy_to_rgb:
* @rgb : in Yxy colour space value
* @Yxy : out rgb colour space value
*

View File

@ -24964,7 +24964,7 @@ float *video_driver_get_hdr_paper_white_float(void)
* slightly brighter than paper white value for some parts
* of the UI
*/
float video_driver_get_hdr_luminace(float nits)
float video_driver_get_hdr_luminance(float nits)
{
settings_t *settings = config_get_ptr();
if(video_driver_supports_hdr() && settings->bools.video_hdr_enable)

View File

@ -1602,7 +1602,7 @@ bool video_driver_supports_hdr(void);
unsigned video_driver_get_hdr_color(unsigned color);
float video_driver_get_hdr_luminace(float nits);
float video_driver_get_hdr_luminance(float nits);
unsigned video_driver_get_hdr_paper_white(void);