mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[warnings] fix unused function and variables
This commit is contained in:
@@ -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 =
|
||||
|
||||
@@ -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++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user