diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-09-16 02:52:25 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-09-16 02:52:25 -0700 |
commit | 81f03393982c29f8f4165b5629c8e8fb708b97a3 (patch) | |
tree | d5bf9ed544b58198841249f4cecbaad33dfee700 /src/glsl/ir.h | |
parent | df62338c491f2cace1a48f99de78e83b5edd82fd (diff) |
glsl: Change from has_builtin_signature to has_user_signature.
The print visitor needs this, and the only existing user can work with
has_user_signature just as well.
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 70c6faaf156..b3b15bb08ed 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -410,8 +410,8 @@ public: */ const char *name; - /** Whether or not this function has a signature that is a built-in. */ - bool has_builtin_signature(); + /** Whether or not this function has a signature that isn't a built-in. */ + bool has_user_signature(); /** * List of ir_function_signature for each overloaded function with this name. |