diff options
author | Joursoir <chat@joursoir.net> | 2022-05-12 12:19:41 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-05-12 12:27:09 +0300 |
commit | d5a53200ffac45b1075a17e05f00194b004ea589 (patch) | |
tree | d310aaec29695153730c1936839eebd8eb507bfd /UefiMonitorTest/UefiMonitorTest.c | |
parent | 545f9d83e634129b3295f2b98fd7b71f01e55965 (diff) | |
download | umt-d5a53200ffac45b1075a17e05f00194b004ea589.tar.gz umt-d5a53200ffac45b1075a17e05f00194b004ea589.tar.bz2 umt-d5a53200ffac45b1075a17e05f00194b004ea589.zip |
add the grayscale test stubs
Diffstat (limited to 'UefiMonitorTest/UefiMonitorTest.c')
-rw-r--r-- | UefiMonitorTest/UefiMonitorTest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.c b/UefiMonitorTest/UefiMonitorTest.c index cd776c0..4de0123 100644 --- a/UefiMonitorTest/UefiMonitorTest.c +++ b/UefiMonitorTest/UefiMonitorTest.c @@ -12,12 +12,14 @@ #include "MainMenu.h" #include "SettingsMenu.h" #include "tests/SolidColors.h" +#include <tests/Grayscale.h> #include "tests/Gradients.h" STATIC CONST UMT_STATE_ACTIONS mStateActions[UMT_STATE_END] = { { MainMenuInit, MainMenuDoit, MainMenuTip, MainMenuChangeParam, MainMenuChangeValue }, { SettingsMenuInit, SettingsMenuDoit, SettingsMenuTip, SettingsChangeParam, SettingsMenuChangeValue }, { SolidColorsTestInit, SolidColorsTestDoit, SolidColorsTestTip, SolidColorsTestChangeParam, SolidColorsTestChangeValue }, + { GrayscaleTestInit, GrayscaleTestDoit, GrayscaleTestTip, GrayscaleTestChangeParam, GrayscaleTestChangeValue }, { GradientsTestInit, GradientsTestDoit, GradientsTestTip, GradientsTestChangeParam, GradientsTestChangeValue } }; |