diff options
author | Ian Romanick <[email protected]> | 2016-10-17 13:55:27 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-01-20 15:41:23 -0800 |
commit | 6b03b345eb64e15e577bc8b2cf04b314a4c70537 (patch) | |
tree | b472924f541ee22c833aef886065c4410611814e /src/compiler/glsl/builtin_functions.h | |
parent | 6c3af043633997633d03e5409939263162076e81 (diff) |
glsl: Add "built-in" function for 64-bit integer sign()
These functions are directly available in shaders. A #define is added
to detect the presence. This allows these functions to be tested using
piglit regardless of whether the driver uses them for lowering. The
GLSL spec says that functions and macros beginning with __ are reserved
for use by the implementation... hey, that's us!
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/compiler/glsl/builtin_functions.h')
-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 a79fb974fbe..c66f523f692 100644 --- a/src/compiler/glsl/builtin_functions.h +++ b/src/compiler/glsl/builtin_functions.h @@ -48,6 +48,9 @@ namespace generate_ir { ir_function_signature * umul64(void *mem_ctx, builtin_available_predicate avail); +ir_function_signature * +sign64(void *mem_ctx, builtin_available_predicate avail); + } #endif /* BULITIN_FUNCTIONS_H */ |