14 lines
119 B
C++
14 lines
119 B
C++
#pragma once
|
|
|
|
#include "GL/glew.h"
|
|
|
|
namespace zgl::shading
|
|
{
|
|
|
|
struct sampler_uniform
|
|
{
|
|
GLenum binding_location;
|
|
};
|
|
|
|
}
|