Files
Z3D/include/opengl/shading/uniform.hpp
2025-03-27 19:47:32 +01:00

15 lines
116 B
C++

#pragma once
#include "GL/glew.h"
namespace zgl::shading
{
struct uniform
{
GLenum type;
GLint location;
};
}