mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
Fixed a shameful bug. Color translation should work now.
svn path=/trunk/; revision=4056
This commit is contained in:
parent
fe5caa6437
commit
9a5403580f
1 changed files with 6 additions and 3 deletions
|
@ -58,9 +58,12 @@ ULONG ClosestColorMatch(ULONG SourceColor, ULONG *DestColors,
|
|||
{
|
||||
cDestColors = (PVIDEO_CLUTDATA)&DestColors[i];
|
||||
|
||||
cxRed = (cSourceColor->Red - cDestColors->Red) ^ 2;
|
||||
cxGreen = (cSourceColor->Green - cDestColors->Green) ^ 2;
|
||||
cxBlue = (cSourceColor->Blue - cDestColors->Blue) ^ 2;
|
||||
cxRed = (cSourceColor->Red - cDestColors->Red);
|
||||
cxRed *= cxRed; //compute cxRed squared
|
||||
cxGreen = (cSourceColor->Green - cDestColors->Green);
|
||||
cxGreen *= cxGreen;
|
||||
cxBlue = (cSourceColor->Blue - cDestColors->Blue);
|
||||
cxBlue *= cxBlue;
|
||||
|
||||
rt = /* sqrt */ (cxRed + cxGreen + cxBlue);
|
||||
|
||||
|
|
Loading…
Reference in a new issue