mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 13:28:20 +00:00
11 lines
193 B
Go
Executable File
11 lines
193 B
Go
Executable File
package shaders
|
|
|
|
import "github.com/go-gl/gl/v4.6-core/gl"
|
|
|
|
type ShaderType int
|
|
|
|
const (
|
|
VertexShaderType ShaderType = gl.VERTEX_SHADER
|
|
FragmentShaderType ShaderType = gl.FRAGMENT_SHADER
|
|
)
|