summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 616bfe2)
raw | patch | inline | side by side (parent: 616bfe2)
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Mon, 23 Oct 2017 08:11:17 +0000 (11:11 +0300) | ||
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Tue, 24 Oct 2017 08:47:40 +0000 (11:47 +0300) |
utils/kmstest.cpp | patch | blob | history |
diff --git a/utils/kmstest.cpp b/utils/kmstest.cpp
index 63b7d44df51a3e92f9cc27c437bf555cc3b0d5fb..21309d695802a07851f2e703d334630bd9c74042 100644 (file)
--- a/utils/kmstest.cpp
+++ b/utils/kmstest.cpp
puts(usage_str);
}
-enum class ObjectType
+enum class ArgType
{
Connector,
Crtc,
struct Arg
{
- ObjectType type;
+ ArgType type;
string arg;
};
Option("c|connector=",
[&](string s)
{
- args.push_back(Arg { ObjectType::Connector, s });
+ args.push_back(Arg { ArgType::Connector, s });
}),
Option("r|crtc=", [&](string s)
{
- args.push_back(Arg { ObjectType::Crtc, s });
+ args.push_back(Arg { ArgType::Crtc, s });
}),
Option("p|plane=", [&](string s)
{
- args.push_back(Arg { ObjectType::Plane, s });
+ args.push_back(Arg { ArgType::Plane, s });
}),
Option("f|fb=", [&](string s)
{
- args.push_back(Arg { ObjectType::Framebuffer, s });
+ args.push_back(Arg { ArgType::Framebuffer, s });
}),
Option("v|view=", [&](string s)
{
- args.push_back(Arg { ObjectType::View, s });
+ args.push_back(Arg { ArgType::View, s });
}),
Option("|dmt", []()
{
@@ -519,7 +519,7 @@ static vector<OutputInfo> setups_to_outputs(Card& card, ResourceManager& resman,
for (auto& arg : output_args) {
switch (arg.type) {
- case ObjectType::Connector:
+ case ArgType::Connector:
{
outputs.push_back(OutputInfo { });
current_output = &outputs.back();
@@ -530,7 +530,7 @@ static vector<OutputInfo> setups_to_outputs(Card& card, ResourceManager& resman,
break;
}
- case ObjectType::Crtc:
+ case ArgType::Crtc:
{
if (!current_output) {
outputs.push_back(OutputInfo { });
@@ -549,7 +549,7 @@ static vector<OutputInfo> setups_to_outputs(Card& card, ResourceManager& resman,
break;
}
- case ObjectType::Plane:
+ case ArgType::Plane:
{
if (!current_output) {
outputs.push_back(OutputInfo { });
@@ -570,7 +570,7 @@ static vector<OutputInfo> setups_to_outputs(Card& card, ResourceManager& resman,
break;
}
- case ObjectType::Framebuffer:
+ case ArgType::Framebuffer:
{
if (!current_output) {
outputs.push_back(OutputInfo { });
@@ -603,7 +603,7 @@ static vector<OutputInfo> setups_to_outputs(Card& card, ResourceManager& resman,
break;
}
- case ObjectType::View:
+ case ArgType::View:
{
if (!current_plane || current_plane->fbs.empty())
EXIT("'view' parameter requires a plane and a fb");