charcoal/OpenGLEngine/TextureGenerator.h
Elipzer 5a9765b111 Image Rendering almost works!
There is an OpenGL error (1282) invalid operation that is getting
caught when switching to the imagescene. This needs to get fixed
and then hopefully the whole thing will work.
2018-10-09 19:58:26 -04:00

19 lines
234 B
C++

#pragma once
#include <vector>
#include "Texture.h"
#include "Sampler.h"
namespace charcoal
{
namespace builtin
{
namespace texturegenerator
{
Texture* gen_quick_cube_texture();
Sampler* gen_quick_sampler();
}
}
}