Lines Matching defs:alpha
1333 // just ignores the alpha channel and makes the whole cursor opaque
2023 BYTE alpha = 0;
2028 GetLayeredWindowAttributes(window->win32.handle, &key, &alpha, &flags);
2036 // remove it if the window is alpha blended
2047 SetLayeredWindowAttributes(window->win32.handle, key, alpha, flags);
2052 BYTE alpha;
2056 GetLayeredWindowAttributes(window->win32.handle, NULL, &alpha, &flags))
2059 return alpha / 255.f;
2070 const BYTE alpha = (BYTE) (255 * opacity);
2073 SetLayeredWindowAttributes(window->win32.handle, 0, alpha, LWA_ALPHA);