diff options
author | Connor Abbott <[email protected]> | 2014-07-08 12:21:00 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-07-15 11:16:16 -0700 |
commit | 58270c2fac493497ed7923830f49051a53e86a07 (patch) | |
tree | ca7bbef19c575c452b524b8432beedcda30e8fee /src/glsl/ast_to_hir.cpp | |
parent | 7b0f69225afb362ec2681d9b36eae2d035b10c00 (diff) |
exec_list: Make various places use the new length() method.
Instead of hand-rolling it.
v2 [mattst88]: Rename get_size to length. Expand comment in ir_reader.
Reviewed-by: Ian Romanick <[email protected]> [v1]
Reviewed-by: Matt Turner <[email protected]>
Signed-off-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 885bee547f6..8ef8bf92ce6 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -5007,9 +5007,7 @@ ast_process_structure_or_interface_block(exec_list *instructions, * 'declarations' list in each of the elements. */ foreach_list_typed (ast_declarator_list, decl_list, link, declarations) { - foreach_list_typed (ast_declaration, decl, link, &decl_list->declarations) { - decl_count++; - } + decl_count += decl_list->declarations.length(); } /* Allocate storage for the fields and process the field |