diff options
Diffstat (limited to 'utils/kmstest.cpp')
-rw-r--r-- | utils/kmstest.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/kmstest.cpp b/utils/kmstest.cpp index e949368..557c3e5 100644 --- a/utils/kmstest.cpp +++ b/utils/kmstest.cpp @@ -991,9 +991,12 @@ int main(int argc, char **argv) if (card.has_atomic()) { for (OutputInfo& o : outputs) { + if (o.fbs.empty()) + continue; + o.primary_plane = resman.reserve_primary_plane(o.crtc); - if (!o.fbs.empty() && !o.primary_plane) + if (!o.primary_plane) EXIT("Could not get primary plane for crtc '%u'", o.crtc->id()); } } |