downgrade shader version

This commit is contained in:
Liam Galvin 2018-11-29 09:30:07 +00:00
parent 07bdd33c53
commit 3a57a826fb
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import (
const (
vertexShaderSource = `
#version 410
#version 150
in vec3 vp;
in vec3 inColour;
smooth out vec3 theColour;
@ -20,7 +20,7 @@ const (
` + "\x00"
fragmentShaderSource = `
#version 410
#version 150
smooth in vec3 theColour;
out vec4 outColour;
void main() {