package shaders import "github.com/go-gl/gl/v4.1-core/gl" type ShaderType int const ( VertexShaderType ShaderType = gl.VERTEX_SHADER FragmentShaderType ShaderType = gl.FRAGMENT_SHADER )