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