[NFC] Remove unused printMe variable (#1674)

Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
This commit is contained in:
Sven van Haastregt
2023-03-16 06:23:06 +00:00
committed by paulfradgley
parent 743cdeb246
commit 9409f2b94b

View File

@@ -2152,14 +2152,6 @@ FloatPixel sample_image_pixel_float_offset(
lowRight[2], lowRight[3]);
}
bool printMe = false;
if (x1 <= 0 || x2 <= 0 || x1 >= (int)width - 1
|| x2 >= (int)width - 1)
printMe = true;
if (y1 <= 0 || y2 <= 0 || y1 >= (int)height - 1
|| y2 >= (int)height - 1)
printMe = true;
double weights[2][2];
weights[0][0] = weights[0][1] = 1.0 - frac(x - 0.5f);