Merge pull request #92 from liamg/downgrade-shader-version

Downgrade shader version
This commit is contained in:
Liam Galvin 2018-11-29 09:32:21 +00:00 committed by GitHub
commit 16d50724a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() {