Initial commit

This commit is contained in:
2025-11-01 23:54:33 -05:00
commit f397068f8d
44 changed files with 13027 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "BitmapFormat.hpp"
#include "PngFormat.hpp"
#include "JpegFormat.hpp"
namespace Tesses::Framework::Graphics::ImageFormats {
class Formats {
public:
static BitmapFormat Bitmap;
static PngFormat Png;
static JpegFormat Jpeg;
//Don't free the ImageFormat (may return null)
static ImageFormat* FromExtension(std::string ext);
};
}