diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2014-09-17 09:59:46 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2014-09-17 09:59:46 +0200 |
commit | 3ba1fbe128fc4a5b290dba6f1e2560490157f65f (patch) | |
tree | 4535c7851d6c84d8b713f3ba618fde7a7d754eb2 /plugins/dexela/software-roi.h | |
parent | 05523b118bf396f33528b7aa59db5ad1b7378d54 (diff) | |
parent | d35c0cf63f1174932b5a3bccb5f1db0a2e9bacc9 (diff) | |
download | uca-3ba1fbe128fc4a5b290dba6f1e2560490157f65f.tar.gz uca-3ba1fbe128fc4a5b290dba6f1e2560490157f65f.tar.bz2 uca-3ba1fbe128fc4a5b290dba6f1e2560490157f65f.tar.xz uca-3ba1fbe128fc4a5b290dba6f1e2560490157f65f.zip |
Merge pull request #57 from miq/plugin-dexela-roi
Dexela plugin updates
Diffstat (limited to 'plugins/dexela/software-roi.h')
-rw-r--r-- | plugins/dexela/software-roi.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/dexela/software-roi.h b/plugins/dexela/software-roi.h new file mode 100644 index 0000000..3fb3b69 --- /dev/null +++ b/plugins/dexela/software-roi.h @@ -0,0 +1,18 @@ +#ifndef SOFTWAREROI_H +#define SOFTWAREROI_H +#include <glib.h> + +/** + * @brief apply_software_roi Extracts the pixels defined by x, y, roiWidth, roiHeight from + * the src array and writes them into the dest buffer + * @param src + * @param srcWidth + * @param dest + * @param x + * @param y + * @param roiWidth + * @param roiHeight + */ +void apply_software_roi(const guchar* src, guint srcWidth, guint bytesPerPixel, guchar* dest, guint x, guint y, guint roiWidth, guint roiHeight); + +#endif // SOFTWAREROI_H |