mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
ksmserver: replace use of internal __uint16_t with public uint16_t type
fixes build on host with musl C library Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
0955815398
commit
8c314d5092
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ void scanline_blend_sse2(const __m128i *over, const quint8 a, const __m128i *und
|
|||
__m128i *result, uint length)
|
||||
{
|
||||
length = (length + 15) >> 4;
|
||||
const __m128i alpha = _mm_set1_epi16(__uint16_t (a));
|
||||
const __m128i alpha = _mm_set1_epi16(uint16_t (a));
|
||||
const __m128i negalpha = _mm_xor_si128(alpha, _mm_set1_epi16 (0x00ff));
|
||||
|
||||
for (uint i = 0; i < length; i++)
|
||||
|
|
Loading…
Add table
Reference in a new issue