1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-11 13:51:02 -05:00

options: remove a spurious warning

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2019-07-26 02:44:33 +01:00
parent 04ae6934e1
commit 357968c815
No known key found for this signature in database
GPG key ID: 37C999F617EA1A47
2 changed files with 4 additions and 2 deletions

View file

@ -461,6 +461,7 @@ static bool image_op(backend_t *base, enum image_operations op, void *image,
return true; return true;
} }
// TODO: use copy-on-write
static void *copy(backend_t *base, const void *image, const region_t *reg) { static void *copy(backend_t *base, const void *image, const region_t *reg) {
const struct _xrender_image_data *img = image; const struct _xrender_image_data *img = image;
struct _xrender_data *xd = (void *)base; struct _xrender_data *xd = (void *)base;

View file

@ -764,7 +764,7 @@ void get_cfg(options_t *opt, int argc, char *const *argv, bool shadow_enable,
// --xrender-sync // --xrender-sync
log_warn("Please use --xrender-sync-fence instead of --xrender-sync"); log_warn("Please use --xrender-sync-fence instead of --xrender-sync");
opt->xrender_sync_fence = true; opt->xrender_sync_fence = true;
break; break;
P_CASEBOOL(313, xrender_sync_fence); P_CASEBOOL(313, xrender_sync_fence);
P_CASEBOOL(315, no_fading_destroyed_argb); P_CASEBOOL(315, no_fading_destroyed_argb);
P_CASEBOOL(316, force_win_blend); P_CASEBOOL(316, force_win_blend);
@ -800,7 +800,8 @@ void get_cfg(options_t *opt, int argc, char *const *argv, bool shadow_enable,
setlocale(LC_NUMERIC, lc_numeric_old); setlocale(LC_NUMERIC, lc_numeric_old);
free(lc_numeric_old); free(lc_numeric_old);
if (opt->monitor_repaint && opt->backend != BKEND_XRENDER) { if (opt->monitor_repaint && opt->backend != BKEND_XRENDER &&
!opt->experimental_backends) {
log_warn("--monitor-repaint has no effect when backend is not xrender"); log_warn("--monitor-repaint has no effect when backend is not xrender");
} }