Changed: #1219 Bad color when rgba.cpp is compiled with GCC 4.2.4
This commit is contained in:
parent
874b39b05a
commit
639b7f2285
1 changed files with 8 additions and 0 deletions
|
@ -643,6 +643,8 @@ bool CRGBA::convertToHLS(float &h, float &l, float &s) const
|
|||
{
|
||||
h = 2.f + (b - r) / diff;
|
||||
}
|
||||
#if defined(GCC_VERSION) && (GCC_VERSION == 40204)
|
||||
// use the fix only if using the specific GCC version
|
||||
else if (maxV == b)
|
||||
{
|
||||
h = 4.f + (r - g) / diff;
|
||||
|
@ -652,6 +654,12 @@ bool CRGBA::convertToHLS(float &h, float &l, float &s) const
|
|||
// this case is to fix a compiler bug
|
||||
h = (g - b) / diff;
|
||||
}
|
||||
#else
|
||||
else
|
||||
{
|
||||
h = 4.f + (r - g) / diff;
|
||||
}
|
||||
#endif
|
||||
|
||||
h *= 60.f; // scale to [0..360]
|
||||
|
||||
|
|
Loading…
Reference in a new issue