Skip to content

Commit

Permalink
config: drop kawase blur method
Browse files Browse the repository at this point in the history
it was added with intention to remove it later almost three years ago in
33c5a5a
  • Loading branch information
absolutelynothelix committed Jul 21, 2023
1 parent bd47a47 commit 2c83fb8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 2c83fb8

Please sign in to comment.