mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Changed RgbImage to template based Image (with template for pixel type)
Former-commit-id: ef02f164eaf3c2f9dd552c1c17b525cf6eed499c
This commit is contained in:
10
libsrc/utils/ColorArgb.cpp
Normal file
10
libsrc/utils/ColorArgb.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
// Utils includes
|
||||
#include <utils/ColorArgb.h>
|
||||
|
||||
ColorArgb ColorArgb::BLACK = { 255, 0, 0, 0 };
|
||||
ColorArgb ColorArgb::RED = { 255, 255, 0, 0 };
|
||||
ColorArgb ColorArgb::GREEN = { 255, 0, 255, 0 };
|
||||
ColorArgb ColorArgb::BLUE = { 255, 0, 0, 255 };
|
||||
ColorArgb ColorArgb::YELLOW= { 255, 255, 255, 0 };
|
||||
ColorArgb ColorArgb::WHITE = { 255, 255, 255, 255 };
|
Reference in New Issue
Block a user