From 89ced9478f200facde423423df8c1718752f8a6c Mon Sep 17 00:00:00 2001 From: Mihael Koep Date: Thu, 6 Aug 2015 12:44:54 +0200 Subject: Remove ANKA plugins and change versioning scheme for bundled plugins ANKA plugins are developed and distributed separately like other plugins depending on vendor SDKs. The bundled plugins use libuca version as their version and depend on it directly. This ensures that they always match the libuca version and makes versioning more transparent for the end users. Conflicts: plugins/mock/CMakeLists.txt --- plugins/dexela/software-roi.c | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 plugins/dexela/software-roi.c (limited to 'plugins/dexela/software-roi.c') 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 - -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); - } -} -- cgit v1.2.3