Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
写和写有什么区别
in vec3 position;
或者
attribute vec3 position;
在 glsl 着色器中?
attribute自 glsl 1.3 起已弃用,并varying在 glsl 1.4 中删除:
attribute
varying
这里是glsl 1.4 规范的摘录(1.2.6 与版本 1.2 的功能差异摘要):
以下是 1.3 版中已弃用的功能的摘要: 使用关键字属性和变化(使用in和out)。
以下是 1.3 版中已弃用的功能的摘要: