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:
parent
bd47a47275
commit
2c83fb821b
1 changed files with 0 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue