summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-04-18 17:06:08 -0700
committerIan Romanick <ian.d.romanick@intel.com>2011-04-18 17:06:08 -0700
commitedf2e4f79d5b27cb909b37fabc35e68d14af0834 (patch)
treea3a52f809634d42eae4c868e7009b74d966b0b2e
parentff5dd55e264d8f0282aa3ae3dc4f6ab26d98731d (diff)
glsl: 80-column wrapping and whitespace fixes
-rw-r--r--src/glsl/ast_function.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/glsl/ast_function.cpp b/src/glsl/ast_function.cpp
index e5cb8733952..67147b6718f 100644
--- a/src/glsl/ast_function.cpp
+++ b/src/glsl/ast_function.cpp
@@ -107,7 +107,11 @@ match_function_by_name(exec_list *instructions, const char *name,
* FINISHME: matching signature but shader X + N contains an _exact_
* FINISHME: matching signature.
*/
- if (sig == NULL && (f == NULL || state->es_shader || !f->has_user_signature()) && state->symbols->get_type(name) == NULL && (state->language_version == 110 || state->symbols->get_variable(name) == NULL)) {
+ if (sig == NULL
+ && (f == NULL || state->es_shader || !f->has_user_signature())
+ && state->symbols->get_type(name) == NULL
+ && (state->language_version == 110
+ || state->symbols->get_variable(name) == NULL)) {
/* The current shader doesn't contain a matching function or signature.
* Before giving up, look for the prototype in the built-in functions.
*/