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

#version 400
#extension GL_AMD_gpu_shader_half_float : enable

f16vec4 test() {

	float16_t N = 0.123HF;
	float16_t I = 0.456HF;
	float16_t eta = 0.789HF;
	
	return refract(f16vec4(I), f16vec4(N), eta);
}