14 lines
255 B
Plaintext
14 lines
255 B
Plaintext
|
#version 310 es
|
||
|
#extension GL_AMD_gpu_shader_half_float : require
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void unused_entry_point() {
|
||
|
return;
|
||
|
}
|
||
|
void f() {
|
||
|
float16_t a = 1.0hf;
|
||
|
float16_t b = 1.0hf;
|
||
|
float16_t c = 1.0hf;
|
||
|
}
|
||
|
|