summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/AMD_shader_trinary_minmax/min3-f16vec4.vert
blob: 666f062ce29346a010c4aedb07af57c79d812cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// [config]
// expect_result: pass
// glsl_version: 4.00
// require_extensions: GL_AMD_gpu_shader_half_float GL_AMD_shader_trinary_minmax
// [end config]
//
// Tests use of half float with min3() builtin

#version 400
#extension GL_AMD_gpu_shader_half_float : enable
#extension GL_AMD_shader_trinary_minmax : enable

f16vec4 test() {

	float16_t x = 0.999HF;
	float16_t y = 0.567HF;
	float16_t z = 0.123HF;

	return min3(f16vec4(x), f16vec4(y), f16vec4(z));
}