标签: opengl glsl
写作
in vec3 position;
或
attribute vec3 position;
在glsl着色器中?
答案 0 :(得分:6)
attribute和varying已弃用,并已在glsl 1.4中删除:
attribute
varying
此处摘录自glsl 1.4 specs( 1.2.6功能与版本1.2的差异摘要):
以下是1.3版中不推荐使用的功能摘要: 使用关键字属性和改变(使用 in 和 out )。
以下是1.3版中不推荐使用的功能摘要: