You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
684 B
28 lines
684 B
#ifndef TINTMAP_H
|
|
#define TINTMAP_H
|
|
|
|
#include <QObject>
|
|
#include <QMetaType>
|
|
#include "model/processor/IProcessStrategy.h"
|
|
#include "utils/OpenCLHelper.h"
|
|
|
|
typedef struct TintMap_t
|
|
{
|
|
cl_int tintMapSelector;
|
|
}TintMap_t;
|
|
|
|
|
|
class TintMap : public IProcessStrategy
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_INVOKABLE TintMap(const Context context, const QString kernelPath, const QObject *parent);
|
|
virtual void cpuProcess(ScenGenOutput_t parameters) override;
|
|
virtual void finalize() override;
|
|
|
|
private:
|
|
KernelFunctor<Image2D, Image2D, TintMap_t> _kernelFunctor;
|
|
virtual Image* processKernel(Image *frames, Buffer* scratchPad) override;
|
|
TintMap_t _kernelParameters;
|
|
};
|
|
#endif // TINTMAP_H
|
|
|