summaryrefslogtreecommitdiff
path: root/gfx/image.h
blob: 6fbbdd16ce3275a902889c787ab3928f6bb5bc7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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;
};