summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/matrix/determinant.vert
blob: 01064a2fff20eadac823d0033e9cd854b017192b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// [config]
// expect_result: pass
// glsl_version: 4.00
// require_extensions: GL_AMD_gpu_shader_half_float
// [end config]
//
// Tests use of half float with determinant() builtin

#version 400
#extension GL_AMD_gpu_shader_half_float : enable

float16_t test_mat2() {

	float16_t m = 0.123HF;
	
	return determinant(f16mat2(m));
}

float16_t test_mat3() {

	float16_t m = 0.123HF;
	
	return determinant(f16mat3(m));
}

float16_t test_mat4() {

	float16_t m = 0.123HF;
	
	return determinant(f16mat4(m));
}