summaryrefslogtreecommitdiff
path: root/tests/spec/amd_gpu_shader_half_float/compiler/builtin-functions/interpolation/interpolateAtCentroid.frag
blob: c9e8f97f69a6816f0974f7b0483e3a2eb8d0fee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// [config]
// expect_result: pass
// glsl_version: 4.00
// require_extensions: GL_AMD_gpu_shader_half_float
// [end config]
//
// Tests use of half float with interpolateAtCentroid() builtin

#version 400
#extension GL_AMD_gpu_shader_half_float : enable

in float16_t p;

float16_t test() {

	return interpolateAtCentroid(p);
}