diff options
author | Matt Turner <[email protected]> | 2015-04-01 18:25:02 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-04-06 10:13:22 -0700 |
commit | d131630c0825f199768965c504b6fa1e593d03d5 (patch) | |
tree | 728645769427da4d230762b089d2dd5fb1736b89 /src/glsl | |
parent | c8d65dd7138ba5683be16e692882e41d6dae7bf8 (diff) |
nir: Remove fsin_reduced/fcos_reduced.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/nir/nir_opcodes.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glsl/nir/nir_opcodes.py b/src/glsl/nir/nir_opcodes.py index f96424fa411..264806f5d7c 100644 --- a/src/glsl/nir/nir_opcodes.py +++ b/src/glsl/nir/nir_opcodes.py @@ -191,8 +191,6 @@ unop("fround_even", tfloat, "_mesa_roundevenf(src0)") unop("fsin", tfloat, "sinf(src0)") unop("fcos", tfloat, "cosf(src0)") -unop("fsin_reduced", tfloat, "sinf(src0)") -unop("fcos_reduced", tfloat, "cosf(src0)") # Partial derivatives. |