mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 06:31:48 +00:00
fixed GL3 generic program link issue due to variable type qualifier mismatches (centroid vs not)
this problem proved fatal on some Intel drivers
This commit is contained in:
parent
9e061c4aff
commit
e013893c1b
1 changed files with 3 additions and 3 deletions
|
@ -286,9 +286,9 @@ static const char* generic_vs =
|
|||
"in vec2 texCoords2;\n"
|
||||
"in vec4 color;\n"
|
||||
"\n"
|
||||
"out vec2 texCoords1FS;\n"
|
||||
"out vec2 texCoords2FS;\n"
|
||||
"out vec4 colorFS;\n"
|
||||
"centroid out vec2 texCoords1FS;\n"
|
||||
"centroid out vec2 texCoords2FS;\n"
|
||||
"centroid out vec4 colorFS;\n"
|
||||
"\n"
|
||||
"void main()\n"
|
||||
"{\n"
|
||||
|
|
Loading…
Reference in a new issue