diff options
author | Matt Turner <[email protected]> | 2017-07-09 14:12:52 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-08-21 14:45:44 -0700 |
commit | 91b8d874daa82c6c74f01bbc602a56f44569e38a (patch) | |
tree | d09ffad3992817da0de6096e1dab62e118725845 /src | |
parent | ca73c3358c91434e68ab31c23d13986d87c661cd (diff) |
glsl: Add prototype for udivmod64()
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/glsl/builtin_functions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler/glsl/builtin_functions.h b/src/compiler/glsl/builtin_functions.h index 2053c82b745..89ec9b7d5dd 100644 --- a/src/compiler/glsl/builtin_functions.h +++ b/src/compiler/glsl/builtin_functions.h @@ -64,6 +64,9 @@ umul64(void *mem_ctx, builtin_available_predicate avail); ir_function_signature * sign64(void *mem_ctx, builtin_available_predicate avail); +ir_function_signature * +udivmod64(void *mem_ctx, builtin_available_predicate avail); + } #endif /* BULITIN_FUNCTIONS_H */ |