mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Finished the amlogic grabber for the 'WeTek Play'
Former-commit-id: e459cdfe6273ad2bfee92d2d190801ebdc691a5c
This commit is contained in:
@@ -6,6 +6,8 @@ SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/utils)
|
||||
add_library(hyperion-utils
|
||||
${CURRENT_HEADER_DIR}/ColorArgb.h
|
||||
${CURRENT_SOURCE_DIR}/ColorArgb.cpp
|
||||
${CURRENT_HEADER_DIR}/ColorBgr.h
|
||||
${CURRENT_SOURCE_DIR}/ColorBgr.cpp
|
||||
${CURRENT_HEADER_DIR}/ColorRgb.h
|
||||
${CURRENT_SOURCE_DIR}/ColorRgb.cpp
|
||||
${CURRENT_HEADER_DIR}/ColorRgba.h
|
||||
|
11
libsrc/utils/ColorBgr.cpp
Normal file
11
libsrc/utils/ColorBgr.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
// Local includes
|
||||
#include <utils/ColorBgr.h>
|
||||
|
||||
ColorBgr ColorBgr::BLACK = { 0, 0, 0 };
|
||||
ColorBgr ColorBgr::RED = { 0, 0, 255 };
|
||||
ColorBgr ColorBgr::GREEN = { 0, 255, 0 };
|
||||
ColorBgr ColorBgr::BLUE = { 255, 0, 0 };
|
||||
ColorBgr ColorBgr::YELLOW= { 0, 255, 255 };
|
||||
ColorBgr ColorBgr::WHITE = { 255, 255, 255 };
|
||||
|
Reference in New Issue
Block a user