diff options
Diffstat (limited to 'plugins/dexela/software-roi.c')
-rw-r--r-- | plugins/dexela/software-roi.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/dexela/software-roi.c b/plugins/dexela/software-roi.c deleted file mode 100644 index 6056dec..0000000 --- a/plugins/dexela/software-roi.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "software-roi.h" -#include <string.h> - -void apply_software_roi(const guchar* src, guint srcWidth, guint bytesPerPixel, guchar* dest, guint x, guint y, guint roiWidth, guint roiHeight) -{ - for (guint row = 0; row < roiHeight; row++) { - guint roiWidthInBytes = roiWidth * bytesPerPixel; - guint rowOffset = srcWidth * bytesPerPixel * (y + row); - guint offset = rowOffset + x * bytesPerPixel; - memcpy(dest + row * roiWidthInBytes, src + offset, roiWidthInBytes); - } -} |