From 1936a703bf1a3b27db9bb4d503b861f6d1fa2e74 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 5 Feb 2025 11:57:52 +0200 Subject: PixelFormats: clean fourcc management Signed-off-by: Tomi Valkeinen --- utils/kmsprint.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/kmsprint.cpp') diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp index c573c2e..919b50f 100644 --- a/utils/kmsprint.cpp +++ b/utils/kmsprint.cpp @@ -111,7 +111,7 @@ static string format_plane(Plane& p) (uint32_t)p.get_prop_value("CRTC_H")); } - string fmts = join(p.get_formats(), " ", [](PixelFormat fmt) { return PixelFormatToFourCC(fmt); }); + string fmts = join(p.get_formats(), " ", [](PixelFormat fmt) { return pixel_format_to_fourcc_str(fmt); }); str += fmt::format(" ({})", fmts); @@ -122,7 +122,7 @@ static string format_fb(Framebuffer& fb) { return fmt::format("FB {} {}x{} {}", fb.id(), fb.width(), fb.height(), - PixelFormatToFourCC(fb.format())); + pixel_format_to_fourcc_str(fb.format())); } static string format_property(const Property* prop, uint64_t val) -- cgit v1.2.3