mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
output/render: log human-readable format
This commit is contained in:
parent
80cb89acee
commit
b5a474189e
1 changed files with 5 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
|||
#include <wlr/interfaces/wlr_output.h>
|
||||
#include <wlr/render/interface.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include <xf86drm.h>
|
||||
#include "backend/backend.h"
|
||||
#include "render/allocator/allocator.h"
|
||||
#include "render/drm_format_set.h"
|
||||
|
@ -70,8 +71,10 @@ static bool output_create_swapchain(struct wlr_output *output,
|
|||
return true;
|
||||
}
|
||||
|
||||
wlr_log(WLR_DEBUG, "Choosing primary buffer format 0x%"PRIX32" for output '%s'",
|
||||
format->format, output->name);
|
||||
char *format_name = drmGetFormatName(format->format);
|
||||
wlr_log(WLR_DEBUG, "Choosing primary buffer format %s (0x%08"PRIX32") for output '%s'",
|
||||
format_name ? format_name : "<unknown>", format->format, output->name);
|
||||
free(format_name);
|
||||
|
||||
if (!allow_modifiers && (format->len != 1 || format->modifiers[0] != DRM_FORMAT_MOD_LINEAR)) {
|
||||
if (!wlr_drm_format_has(format, DRM_FORMAT_MOD_INVALID)) {
|
||||
|
|
Loading…
Reference in a new issue