-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPixels.h
More file actions
40 lines (30 loc) · 708 Bytes
/
Pixels.h
File metadata and controls
40 lines (30 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Pixels.h
*
* Created on: Apr 11, 2020
* Author: ans
*/
#ifndef PIXELS_H_
#define PIXELS_H_
#pragma once
#include <stdexcept> // std::runtime_error
class Pixels {
public:
Pixels();
virtual ~Pixels();
void map(int w, int h, unsigned char b, unsigned char * ptr);
void fill(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
void set(int x, int y, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
void * get();
void unmap();
void allocate(int w, int h, unsigned char b);
void deallocate();
operator bool() const;
private:
int width;
int height;
unsigned char bytes;
unsigned char * pixels;
bool allocated;
};
#endif /* PIXELS_H_ */