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