[warnings] fix unused function and variables

This commit is contained in:
akallabeth
2025-03-07 09:34:47 +01:00
parent 37b16a583d
commit 4c1cc2cc0c
3 changed files with 1 additions and 3 deletions

View File

@@ -60,7 +60,6 @@ static INLINE pstatus_t avx2_image_copy_bgr24_bgrx32(BYTE* WINPR_RESTRICT pDstDa
const UINT32 rem = nWidth % 8;
const SSIZE_T width = nWidth - rem;
const size_t align = nSrcStep % 32;
for (SSIZE_T y = 0; y < nHeight; y++)
{
const BYTE* WINPR_RESTRICT srcLine =

View File

@@ -49,7 +49,6 @@ static INLINE pstatus_t sse_image_copy_bgr24_bgrx32(BYTE* WINPR_RESTRICT pDstDat
const __m128i smask = mm_set_epu32(0xff0b0a09, 0xff080706, 0xff050403, 0xff020100);
const UINT32 rem = nWidth % 4;
const size_t align = nSrcStep % 64;
const SSIZE_T width = nWidth - rem;
for (SSIZE_T y = 0; y < nHeight; y++)
{