diff options
author | Kenneth Graunke <[email protected]> | 2013-09-09 14:53:22 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-09 14:54:46 -0700 |
commit | 60850b7b9fbb9827d6841dbd4a4cd9b1e3554d45 (patch) | |
tree | f5eaed8ff8f333d67b2ab62867d9ad91408d8f21 /src/glsl/ir_clone.cpp | |
parent | 260965b7a702efa099dbea6bb90bc5d7426e8465 (diff) |
glsl: Rename ir_function_signature::builtin_info to builtin_avail.
builtin_info was originally going to be a structure containing a bunch
of information, but after various rewrites, it turned into a boolean
availability predicate.
builtin_avail is a better name than builtin_info, since it doesn't
store any information other than availability.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/glsl/ir_clone.cpp')
-rw-r--r-- | src/glsl/ir_clone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp index a91afb7ac84..fb303b0b75c 100644 --- a/src/glsl/ir_clone.cpp +++ b/src/glsl/ir_clone.cpp @@ -329,7 +329,7 @@ ir_function_signature::clone_prototype(void *mem_ctx, struct hash_table *ht) con new(mem_ctx) ir_function_signature(this->return_type); copy->is_defined = false; - copy->builtin_info = this->builtin_info; + copy->builtin_avail = this->builtin_avail; copy->origin = this; /* Clone the parameter list, but NOT the body. |