1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

LibPDF: Update dead link in a comment

This commit is contained in:
Nico Weber 2023-10-31 21:02:24 -04:00 committed by Tim Flynn
parent 1fcf0142d2
commit e35a5da2fb

View file

@ -255,7 +255,7 @@ constexpr Array<float, 3> matrix_multiply(Array<float, 9> a, Array<float, 3> b)
}
// Converts to a flat XYZ space with white point = (1, 1, 1)
// Step 2 of https://www.adobe.com/content/dam/acom/en/devnet/photoshop/sdk/AdobeBPC.pdf
// Step 2 of https://www.color.org/adobebpc.pdf
constexpr Array<float, 3> flatten_and_normalize_whitepoint(Array<float, 3> whitepoint, Array<float, 3> xyz)
{
VERIFY(whitepoint[1] == 1.0f);