openGL之API学习(一九零)version directive must be first statement and may not be repeated
Posted hankern
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openGL之API学习(一九零)version directive must be first statement and may not be repeated相关的知识,希望对你有一定的参考价值。
#version 指令必须写在着色器顶部,在它之前只能有注释和空白
错误原因
#version 100
#version 130
#ifdef GL_ES
#version 100
#else
#version 130
#endif
正确用法
#version 100
或
#version 130
以上是关于openGL之API学习(一九零)version directive must be first statement and may not be repeated的主要内容,如果未能解决你的问题,请参考以下文章
openGL之API学习(一九四)glGenTextures glActiveTexture