Searched refs:EOCF (Results 1 – 3 of 3) sorted by relevance
35 r = a * EOCF(((color >> 16) & 0xff) / 255.0f); in set()36 g = a * EOCF(((color >> 8) & 0xff) / 255.0f); in set()37 b = a * EOCF(((color ) & 0xff) / 255.0f); in set()46 r = EOCF(((color >> 16) & 0xff) / 255.0f); in setUnPreMultiplied()47 g = EOCF(((color >> 8) & 0xff) / 255.0f); in setUnPreMultiplied()48 b = EOCF(((color ) & 0xff) / 255.0f); in setUnPreMultiplied()
293 colorVector[0] = EOCF(srcColorMatrix[4] / 255.0f); in setFill()294 colorVector[1] = EOCF(srcColorMatrix[9] / 255.0f); in setFill()295 colorVector[2] = EOCF(srcColorMatrix[14] / 255.0f); in setFill()
122 static constexpr float EOCF(float srgb) { in EOCF() function