2018-09-16 00:43:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2018-10-11 05:26:24 +00:00
|
|
|
#include <charcoal/Texture.h>
|
|
|
|
#include <charcoal/Sampler.h>
|
2018-09-16 00:43:29 +00:00
|
|
|
|
|
|
|
namespace charcoal
|
|
|
|
{
|
|
|
|
namespace builtin
|
|
|
|
{
|
|
|
|
namespace texturegenerator
|
|
|
|
{
|
2018-10-09 23:58:26 +00:00
|
|
|
Texture* gen_quick_cube_texture();
|
2018-09-16 00:43:29 +00:00
|
|
|
|
2018-10-09 23:58:26 +00:00
|
|
|
Sampler* gen_quick_sampler();
|
2018-09-16 00:43:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|