Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91627f61 authored by Romain Guy's avatar Romain Guy
Browse files

Fix incorrect comments

Bug: 33010587
Test: comment only
Change-Id: Icdfa79bac50545bb73f4c40727fe51780ef4a56d
parent a09a31f9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ namespace uirenderer {
    static constexpr int BrightColorsCount = sizeof(BrightColors) / sizeof(Color::Color);

    // Opto-electronic conversion function for the sRGB color space
    // Takes a gamma-encoded sRGB value and converts it to a linear sRGB value
    // Takes a linear sRGB value and converts it to a gamma-encoded sRGB value
    static constexpr float OECF_sRGB(float linear) {
        // IEC 61966-2-1:1999
        return linear <= 0.0031308f ?
@@ -91,7 +91,7 @@ namespace uirenderer {
    }

    // Opto-electronic conversion function for the sRGB color space
    // Takes a gamma-encoded sRGB value and converts it to a linear sRGB value
    // Takes a linear sRGB value and converts it to a gamma-encoded sRGB value
    // This function returns the input unmodified if linear blending is not enabled
    static constexpr float OECF(float linear) {
#ifdef ANDROID_ENABLE_LINEAR_BLENDING
@@ -102,14 +102,14 @@ namespace uirenderer {
    }

    // Electro-optical conversion function for the sRGB color space
    // Takes a linear sRGB value and converts it to a gamma-encoded sRGB value
    // Takes a gamma-encoded sRGB value and converts it to a linear sRGB value
    static constexpr float EOCF_sRGB(float srgb) {
        // IEC 61966-2-1:1999
        return srgb <= 0.04045f ? srgb / 12.92f : powf((srgb + 0.055f) / 1.055f, 2.4f);
    }

    // Electro-optical conversion function for the sRGB color space
    // Takes a linear sRGB value and converts it to a gamma-encoded sRGB value
    // Takes a gamma-encoded sRGB value and converts it to a linear sRGB value
    // This function returns the input unmodified if linear blending is not enabled
    static constexpr float EOCF(float srgb) {
#ifdef ANDROID_ENABLE_LINEAR_BLENDING