mirror of https://github.com/adamdruppe/arsd.git
Fix ColorF(Color) constructor
This commit is contained in:
parent
2229a1c249
commit
3a9f0866f0
7
color.d
7
color.d
|
@ -570,12 +570,7 @@ struct ColorF {
|
||||||
Constructs a FP color from an integer one
|
Constructs a FP color from an integer one
|
||||||
+/
|
+/
|
||||||
public this(const Color integer) {
|
public this(const Color integer) {
|
||||||
_components = [
|
_components[0.. 4] = integer.components[0 .. 4] / 255.0f;
|
||||||
r / 255.0f,
|
|
||||||
g / 255.0f,
|
|
||||||
b / 255.0f,
|
|
||||||
a / 255.0f,
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue