mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-03 05:31:05 +00:00
25 lines
509 B
C
25 lines
509 B
C
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
|
||
|
enum class ImageFormat
|
||
|
{
|
||
|
R8G8B8A8,
|
||
|
B8G8R8A8
|
||
|
};
|
||
|
|
||
|
class Image
|
||
|
{
|
||
|
public:
|
||
|
virtual ~Image() = default;
|
||
|
|
||
|
virtual int GetWidth() const = 0;
|
||
|
virtual int GetHeight() const = 0;
|
||
|
virtual ImageFormat GetFormat() const = 0;
|
||
|
virtual void* GetData() const = 0;
|
||
|
|
||
|
static std::shared_ptr<Image> Create(int width, int height, ImageFormat format, const void* data);
|
||
|
static std::shared_ptr<Image> LoadResource(const std::string& resourcename, double dpiscale = 1.0);
|
||
|
};
|