17 lines
172 B
C++
17 lines
172 B
C++
#pragma once
|
|
|
|
#include "GL/glew.h"
|
|
|
|
namespace zgl
|
|
{
|
|
struct shader_program_variable
|
|
{
|
|
struct info_type
|
|
{
|
|
GLenum type;
|
|
GLint location;
|
|
} info;
|
|
const char* name;
|
|
};
|
|
}
|