瀏覽代碼

Merge pull request #3753 from Chaosus/shader_const_arg

Adds 'const' as shader function parameter qualifier
Yuri Roubinsky 5 年之前
父節點
當前提交
780498ad80
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      tutorials/shading/shading_reference/shading_language.rst

+ 1 - 0
tutorials/shading/shading_reference/shading_language.rst

@@ -493,6 +493,7 @@ Function arguments can have special qualifiers:
 * **in**: Means the argument is only for reading (default).
 * **out**: Means the argument is only for writing.
 * **inout**: Means the argument is fully passed via reference.
+* **const**: Means the argument is a constant and cannot be changed, may be combined with **in** qualifier.
 
 Example below: