blob: aad6042c3c40c49199cc69240aba670e24c568fa [file] [edit]
#version 450
#extension GL_KHR_compute_shader_derivatives : require
// Test declarying the group layout ahead of the local size
layout(derivative_group_quadsKHR) in;
layout(local_size_x = 2, local_size_y = 2) in;
void main()
{
float dx = dFdx(float(gl_LocalInvocationID.x));
}