summaryrefslogtreecommitdiff
path: root/gfx/image.h
blob: 8bb40673a7e79d6005e698b545ef89134906b496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <span> // IWYU pragma: export
#include <special_members.h>
#include <string>

class Image {
public:
	Image(const char * fileName, int flags);
	Image(const std::string & fileName, int flags) : Image(fileName.c_str(), flags) { }
	Image(std::span<unsigned char> data, int flags);
	~Image();

	NO_COPY(Image);
	NO_MOVE(Image);

	unsigned int width, height, numComponents;
	std::span<unsigned char> data;
};