diff options
Diffstat (limited to 'utils/kmsprint.cpp')
| -rw-r--r-- | utils/kmsprint.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp index 7469b47..017944b 100644 --- a/utils/kmsprint.cpp +++ b/utils/kmsprint.cpp @@ -120,8 +120,9 @@ static string format_plane(Plane& p) static string format_fb(Framebuffer& fb) { - return fmt::format("FB {} {}x{}", - fb.id(), fb.width(), fb.height()); + return fmt::format("FB {} {}x{} {}", + fb.id(), fb.width(), fb.height(), + PixelFormatToFourCC(fb.format())); } static string format_property(const Property* prop, uint64_t val) |
