Core/Color: Switch formal from RGBA8 to RGBA32F
This commit is contained in:
@@ -7,14 +7,14 @@
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
const Color Color::Black(0, 0, 0);
|
||||
const Color Color::Blue(0, 0, 255);
|
||||
const Color Color::Cyan(0, 255, 255);
|
||||
const Color Color::Gray(80, 80, 80);
|
||||
const Color Color::Green(0, 255, 0);
|
||||
const Color Color::Magenta(255, 0, 255);
|
||||
const Color Color::Orange(255, 165, 0);
|
||||
const Color Color::Red(255, 0, 0);
|
||||
const Color Color::Yellow(255, 255, 0);
|
||||
const Color Color::White(255, 255, 255);
|
||||
const Color Color::Black(0.f, 0.f, 0.f);
|
||||
const Color Color::Blue(0.f, 0.f, 1.f);
|
||||
const Color Color::Cyan(0.f, 1.f, 1.f);
|
||||
const Color Color::Gray(80.f / 255.f, 80.f / 255.f, 80.f / 255.f);
|
||||
const Color Color::Green(0.f, 1.f, 0.f);
|
||||
const Color Color::Magenta(1.f, 0.f, 1.f);
|
||||
const Color Color::Orange(1.f, 165.f / 255.f, 0.f);
|
||||
const Color Color::Red(1.f, 0.f, 0.f);
|
||||
const Color Color::Yellow(1.f, 1.f, 0.f);
|
||||
const Color Color::White(1.f, 1.f, 1.f);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user