2020-02-05 20:58:58 +01:00
|
|
|
#include "Graphics.h"
|
2020-09-19 14:36:50 +02:00
|
|
|
#include "ShaderCompiler.h"
|
2020-02-05 20:58:58 +01:00
|
|
|
|
2020-03-20 01:27:40 +01:00
|
|
|
using namespace Seele::Gfx;
|
|
|
|
|
|
|
|
|
|
Graphics::Graphics()
|
2020-02-05 20:58:58 +01:00
|
|
|
{
|
2020-09-19 14:36:50 +02:00
|
|
|
shaderCompiler = new ShaderCompiler(this);
|
2020-02-05 20:58:58 +01:00
|
|
|
}
|
|
|
|
|
|
2020-03-20 01:27:40 +01:00
|
|
|
Graphics::~Graphics()
|
2020-02-05 20:58:58 +01:00
|
|
|
{
|
2020-10-03 11:00:10 +02:00
|
|
|
}
|