mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 07:12:36 +00:00
24 lines
509 B
C++
24 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);
|
|
};
|