17 lines
248 B
C
17 lines
248 B
C
|
#pragma once
|
||
|
|
||
|
#include <glm/glm.hpp>
|
||
|
|
||
|
namespace charcoal
|
||
|
{
|
||
|
namespace builtin
|
||
|
{
|
||
|
namespace glutil
|
||
|
{
|
||
|
using namespace glm;
|
||
|
|
||
|
void clear_screen();
|
||
|
void uniform_matrix(int uniform_index, const mat4& matrix, bool transpose = false);
|
||
|
}
|
||
|
}
|
||
|
}
|