summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag')
-rw-r--r--tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag b/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag
new file mode 100644
index 000000000..41a44e953
--- /dev/null
+++ b/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/derivative/dFdxFine-f16vec3.frag
@@ -0,0 +1,17 @@
+// [config]
+// expect_result: pass
+// glsl_version: 4.50
+// require_extensions: GL_AMD_gpu_shader_half_float
+// [end config]
+//
+// Tests use of half float with dFdxFine() builtin
+
+#version 450
+#extension GL_AMD_gpu_shader_half_float : enable
+
+f16vec3 test() {
+
+ float16_t p = 0.567HF;
+
+ return dFdxFine(f16vec3(p));
+} \ No newline at end of file