diff options
author | Kenneth Graunke <[email protected]> | 2013-09-01 20:48:45 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-09 14:42:33 -0700 |
commit | 76d2f73643f5502d88fdc272447753fde8f6438b (patch) | |
tree | 6687a192a0373a6b398c0b58219708296aa6c6bf /src/glsl/main.cpp | |
parent | 7ddc312c1b2c610ba8f244b49f4c4bc94eeca985 (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.cpp | 2 |
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; } |