2024-06-30 21:24:46 +03:00

7 lines
151 B
C++

#include "Texture.hpp"
#include "GLTexture.hpp"
std::unique_ptr<Texture> Texture::from(const ImageData* image) {
return GLTexture::from(image);
}