summaryrefslogtreecommitdiffstats
path: root/src/glsl/main.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2013-09-01 20:48:45 -0700
committerKenneth Graunke <[email protected]>2013-09-09 14:42:33 -0700
commit76d2f73643f5502d88fdc272447753fde8f6438b (patch)
tree6687a192a0373a6b398c0b58219708296aa6c6bf /src/glsl/main.cpp
parent7ddc312c1b2c610ba8f244b49f4c4bc94eeca985 (diff)
glsl: Switch to the new built-in function module.
All built-ins are now handled by the new code; the old system is dead. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/glsl/main.cpp')
-rw-r--r--src/glsl/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp
index e13d5c45296..57bec44be5a 100644
--- a/src/glsl/main.cpp
+++ b/src/glsl/main.cpp
@@ -230,7 +230,7 @@ main(int argc, char **argv)
ralloc_free(whole_program);
_mesa_glsl_release_types();
- _mesa_glsl_release_functions();
+ _mesa_glsl_release_builtin_functions();
return status;
}