diff options
author | Timothy Arceri <[email protected]> | 2018-03-20 13:06:23 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-03-22 12:42:34 +1100 |
commit | cca214174549af3d608e252d8642c2e194c910ed (patch) | |
tree | 9aebe7e0430bb309ac88a89ad668d82b5d447cd6 /src/compiler/glsl | |
parent | 12c22b897af1e015cf76b1cfee9e456a0e671f38 (diff) |
nir: add frexp_exp and frexp_sig opcodes
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/glsl')
-rw-r--r-- | src/compiler/glsl/glsl_to_nir.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/glsl/glsl_to_nir.cpp b/src/compiler/glsl/glsl_to_nir.cpp index 80eb15f1ab1..be8cc33e067 100644 --- a/src/compiler/glsl/glsl_to_nir.cpp +++ b/src/compiler/glsl/glsl_to_nir.cpp @@ -1612,6 +1612,8 @@ nir_visitor::visit(ir_expression *ir) case ir_unop_ceil: result = nir_fceil(&b, srcs[0]); break; case ir_unop_floor: result = nir_ffloor(&b, srcs[0]); break; case ir_unop_fract: result = nir_ffract(&b, srcs[0]); break; + case ir_unop_frexp_exp: result = nir_frexp_exp(&b, srcs[0]); break; + case ir_unop_frexp_sig: result = nir_frexp_sig(&b, srcs[0]); break; case ir_unop_round_even: result = nir_fround_even(&b, srcs[0]); break; case ir_unop_sin: result = nir_fsin(&b, srcs[0]); break; case ir_unop_cos: result = nir_fcos(&b, srcs[0]); break; |