summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/geometric/distance-f16vec4.vert
blob: 9036cd1e29f8d068e0dc34ffc7b0fd4f41731131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 distance() builtin

#version 400
#extension GL_AMD_gpu_shader_half_float : enable

float16_t test() {

	float16_t p0 = 0.123HF;
	float16_t p1 = 0.456HF;

	return distance(f16vec4(p0), f16vec4(p1));
}