Merge branch 'dev' of https://github.com/Beep6581/RawTherapee into dev
This commit is contained in:
commit
6026c110fa
@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Application
|
Type=Application
|
||||||
Version=1.1
|
Version=1.0
|
||||||
Name=RawTherapee
|
Name=RawTherapee
|
||||||
GenericName=Raw Photo Editor
|
GenericName=Raw Photo Editor
|
||||||
GenericName[cs]=Editor raw obrázků
|
GenericName[cs]=Editor raw obrázků
|
||||||
|
@ -210,10 +210,12 @@ public:
|
|||||||
return r * workingspace[1][0] + g * workingspace[1][1] + b * workingspace[1][2];
|
return r * workingspace[1][0] + g * workingspace[1][1] + b * workingspace[1][2];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __SSE2__
|
||||||
static vfloat rgbLuminance(vfloat r, vfloat g, vfloat b, const vfloat workingspace[3])
|
static vfloat rgbLuminance(vfloat r, vfloat g, vfloat b, const vfloat workingspace[3])
|
||||||
{
|
{
|
||||||
return r * workingspace[0] + g * workingspace[1] + b * workingspace[2];
|
return r * workingspace[0] + g * workingspace[1] + b * workingspace[2];
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Convert red/green/blue to L*a*b
|
* @brief Convert red/green/blue to L*a*b
|
||||||
|
Loading…
x
Reference in New Issue
Block a user