Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
spv.khrComputeShaderDerivativesMissingLayout.comp
blob: 226077b0769afe3f08128cb0194761309808e134 [
file
] [
edit
]
#version 450
#extension GL_KHR_compute_shader_derivatives : require
layout
(
local_size_x
=
2
,
local_size_y
=
2
)
in
;
void
main
()
{
float
dx
=
dFdx
(
float
(
gl_LocalInvocationID
.
x
));
}