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

config: drop kawase blur method

it was added with intention to remove it later almost three years ago in
33c5a5a36b
This commit is contained in:
Maxim Solovyov 2023-07-22 01:04:18 +03:00
parent bd47a47275
commit 2c83fb821b
No known key found for this signature in database

View file

@ -191,11 +191,6 @@ enum blur_method parse_blur_method(const char *src) {
return BLUR_METHOD_GAUSSIAN;
} else if (strcmp(src, "dual_kawase") == 0) {
return BLUR_METHOD_DUAL_KAWASE;
} else if (strcmp(src, "kawase") == 0) {
log_warn("Blur method 'kawase' has been renamed to 'dual_kawase'. "
"Interpreted as 'dual_kawase', but this will stop working "
"soon.");
return BLUR_METHOD_DUAL_KAWASE;
} else if (strcmp(src, "none") == 0) {
return BLUR_METHOD_NONE;
}