summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert')
-rw-r--r--tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert b/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert
new file mode 100644
index 000000000..c23d3cf72
--- /dev/null
+++ b/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/angle-and-trigonometry/tanh.vert
@@ -0,0 +1,17 @@
+// [config]
+// expect_result: pass
+// glsl_version: 4.00
+// require_extensions: GL_AMD_gpu_shader_half_float
+// [end config]
+//
+// Tests use of half float with tanh() builtin
+
+#version 400
+#extension GL_AMD_gpu_shader_half_float : enable
+
+float16_t test() {
+
+ float16_t x = 0.999HF;
+
+ return tanh(x);
+}