summaryrefslogtreecommitdiff
path: root/src/glsl/ir.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-09-16 02:52:25 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-09-16 02:52:25 -0700
commit81f03393982c29f8f4165b5629c8e8fb708b97a3 (patch)
treed5bf9ed544b58198841249f4cecbaad33dfee700 /src/glsl/ir.h
parentdf62338c491f2cace1a48f99de78e83b5edd82fd (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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h
index 70c6faaf15..b3b15bb08e 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.