mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
00ee5cb4b1
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2018 Yuxuan Shui <yshuiv7@gmail.com>
|
|
|
|
#include <stdio.h>
|
|
#include <xcb/xcb.h>
|
|
#include <xcb/composite.h>
|
|
|
|
#include "backend/driver.h"
|
|
#include "diagnostic.h"
|
|
#include "config.h"
|
|
#include "picom.h"
|
|
#include "common.h"
|
|
|
|
void print_diagnostics(session_t *ps, const char *config_file, bool compositor_running) {
|
|
printf("**Version:** " COMPTON_VERSION "\n");
|
|
//printf("**CFLAGS:** %s\n", "??");
|
|
printf("\n### Extensions:\n\n");
|
|
printf("* Shape: %s\n", ps->shape_exists ? "Yes" : "No");
|
|
printf("* XRandR: %s\n", ps->randr_exists ? "Yes" : "No");
|
|
printf("* Present: %s\n", ps->present_exists ? "Present" : "Not Present");
|
|
printf("\n### Misc:\n\n");
|
|
printf("* Use Overlay: %s\n", ps->overlay != XCB_NONE ? "Yes" : "No");
|
|
if (ps->overlay == XCB_NONE) {
|
|
if (compositor_running) {
|
|
printf(" (Another compositor is already running)\n");
|
|
} else if (session_redirection_mode(ps) != XCB_COMPOSITE_REDIRECT_MANUAL) {
|
|
printf(" (Not in manual redirection mode)\n");
|
|
} else {
|
|
printf("\n");
|
|
}
|
|
}
|
|
#ifdef __FAST_MATH__
|
|
printf("* Fast Math: Yes\n");
|
|
#endif
|
|
printf("* Config file used: %s\n", config_file ?: "None");
|
|
printf("\n### Drivers (inaccurate):\n\n");
|
|
print_drivers(ps->drivers);
|
|
}
|
|
|
|
// vim: set noet sw=8 ts=8 :
|