diff options
author | Rob Clark <[email protected]> | 2015-09-17 18:18:19 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2015-09-17 20:25:33 -0400 |
commit | ba78260b0fbd291618df63bc7a54be0a36148b40 (patch) | |
tree | 455ccdcd93ef31b9122ee2ceb61d92a54f5f2a81 | |
parent | c70ed861722c45753ae9a24cf4c00643f0640e2f (diff) |
nir: some comment fixups
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
-rw-r--r-- | src/glsl/nir/nir.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h index 916226791e6..9c091e8d84b 100644 --- a/src/glsl/nir/nir.h +++ b/src/glsl/nir/nir.h @@ -1455,13 +1455,13 @@ typedef struct nir_shader_compiler_options { } nir_shader_compiler_options; typedef struct nir_shader { - /** hash table of name -> uniform nir_variable */ + /** list of uniforms (nir_variable) */ struct exec_list uniforms; - /** hash table of name -> input nir_variable */ + /** list of inputs (nir_variable) */ struct exec_list inputs; - /** hash table of name -> output nir_variable */ + /** list of outputs (nir_variable) */ struct exec_list outputs; /** Set of driver-specific options for the shader. @@ -1471,10 +1471,10 @@ typedef struct nir_shader { */ const struct nir_shader_compiler_options *options; - /** list of global variables in the shader */ + /** list of global variables in the shader (nir_variable) */ struct exec_list globals; - /** list of system value variables in the shader */ + /** list of system value variables in the shade (nir_variable) */ struct exec_list system_values; struct exec_list functions; /** < list of nir_function */ |