diff options
Diffstat (limited to 'rotord/src/Pixels.h')
| -rw-r--r-- | rotord/src/Pixels.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rotord/src/Pixels.h b/rotord/src/Pixels.h new file mode 100644 index 0000000..b6f5865 --- /dev/null +++ b/rotord/src/Pixels.h @@ -0,0 +1,28 @@ +#include <stdint.h> +#include <algorithm> +//for now always uint8_t* rather than templated + +class Pixels{ + public: + Pixels(); + ~Pixels(); + void allocate(int w, int h, int channels); + bool isAllocated() const; + void setFromExternalPixels(uint8_t * newPixels,int w, int h, int channels); + uint8_t * getPixels(); + int getWidth() const; + int getHeight() const; + void clear(); + void swap(Pixels & pix); + int getBytesPerPixel() const; + int getNumChannels() const; + void set(uint8_t val); + private: + uint8_t * pixels; + int width; + int height; + int channels; + bool bAllocated; + bool pixelsOwner; // if set from external data don't delete it +}; + |
