SwRaster: Remove comment 83/289783/1
authorJunsuChoi <jsuya.choi@samsung.com>
Tue, 4 Oct 2022 01:08:52 +0000 (10:08 +0900)
committerMichal Szczecinski <mihashco89@gmail.com>
Tue, 14 Mar 2023 08:42:14 +0000 (09:42 +0100)
Change-Id: If45195fcba8dda3d2e08a3884428e365ec6f6f9f

src/lib/sw_engine/tvgSwRasterTexmapInternal.h

index ab29e8f..b578f87 100644 (file)
             iru = uu + 1;
             irv = vv + 1;
 
-            //FIXME: If vv goes out of buffer, it can cause potential memory problems.
-            //Therefore, an `if condition` is added so that it does not exceed the height of the image.
-            //This is temporary fix.
             if (vv >= sh) continue;
 
             px = *(sbuf + (vv * sw) + uu);