all repos — tint2 @ b608cd59604e0a0370c5e2625c43518d6314f410

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Use a better algorithm for brightness adjustment
o9000 mrovi9000@gmail.com
commit

b608cd59604e0a0370c5e2625c43518d6314f410

parent

fc7aa2d342cd3b5b7c0d2f7e16a930fff5cc98fc

1 files changed, 13 insertions(+), 4 deletions(-)

jump to
M src/util/common.csrc/util/common.c

@@ -241,7 +241,8 @@

void adjust_asb(DATA32 *data, int w, int h, int alpha, float satur, float bright) { unsigned int x, y; - unsigned int a, r, g, b, argb; + unsigned int argb; + int a, r, g, b; unsigned long id; int cmax, cmin; float h2, f, p, q, t;

@@ -294,7 +295,7 @@ if (saturation < 0.0)

saturation = 0.0; if (saturation > 1.0) saturation = 1.0; - brightness += bright; + //brightness += bright; if (brightness < 0.0) brightness = 0.0; if (brightness > 1.0)

@@ -344,6 +345,14 @@ b = (int)(q * 255.0f + 0.5f);

break; } } + + r += bright * 255; + g += bright * 255; + b += bright * 255; + + r = MAX(0, MIN(255, r)); + g = MAX(0, MIN(255, g)); + b = MAX(0, MIN(255, b)); argb = a; argb = (argb << 8) + r;

@@ -503,8 +512,8 @@ adjust_asb(data,

imlib_image_get_width(), imlib_image_get_height(), alpha, - (float)saturation / 100, - (float)brightness / 100); + saturation / 100.0, + brightness / 100.0); imlib_image_put_back_data(data); return copy; }