This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 1510cf0477042fd638ed6a4d41fe663d2e58325a
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Oct 27 06:40:13 2023 +0200
eimage: Remove some redundant function calls
---
src/eimage.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/eimage.c b/src/eimage.c
index b0c7c6c5..a9878805 100644
--- a/src/eimage.c
+++ b/src/eimage.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004-2022 Kim Woelders
+ * Copyright (C) 2004-2023 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
@@ -328,7 +328,6 @@ EImageFill(EImage * im, int x, int y, int w, int h, unsigned int color)
imlib_context_set_image(im);
COLOR32_TO_ARGB(color, a, r, g, b);
imlib_context_set_color(r, g, b, a);
- imlib_context_set_blend(0);
imlib_image_fill_rectangle(x, y, w, h);
}
@@ -378,7 +377,6 @@ EImageTile(EImage * im, EImage * tile, int flags, int tw, int th,
{
tim = imlib_create_image(tw, th);
imlib_context_set_image(tim);
- imlib_context_set_blend(0);
imlib_context_set_anti_alias(1);
imlib_blend_image_onto_image(tile, 0, 0, 0, sw, sh, 0, 0, tw, th);
imlib_context_set_anti_alias(0);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.