summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/vector-relational/notEqual-f16vec2.vert
blob: 0b46eb9ba03661807b12100284b980830a39ae0d (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 notEqual() builtin

#version 400
#extension GL_AMD_gpu_shader_half_float : enable

bvec2 test() {

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

	return notEqual(f16vec2(x), f16vec2(y));
}