2018-10-08 01:51:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-08 19:19:48 +00:00
|
|
|
#include <vector>
|
2018-10-08 01:51:05 +00:00
|
|
|
|
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace image_loader
|
|
|
|
{
|
2018-10-08 19:19:48 +00:00
|
|
|
struct ImageRGBA
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> data;
|
|
|
|
unsigned int width;
|
|
|
|
unsigned int height;
|
|
|
|
};
|
|
|
|
|
2018-10-08 01:51:05 +00:00
|
|
|
ImageRGBA load_file(const std::string& filename);
|
|
|
|
}
|
|
|
|
}
|