15 lines
116 B
C++
15 lines
116 B
C++
#pragma once
|
|
|
|
#include "GL/glew.h"
|
|
|
|
namespace zgl::shading
|
|
{
|
|
|
|
struct uniform
|
|
{
|
|
GLenum type;
|
|
GLint location;
|
|
};
|
|
|
|
}
|