Add tests for compute shader derivatives with spec constant workgroup size

This commit is contained in:
Jeff Bolz 2024-09-12 12:10:19 -05:00 committed by arcady-lunarg
parent dc1012140e
commit f7f0f3067c
5 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#version 320 es
#extension GL_NV_compute_shader_derivatives : require
layout (local_size_x_id = 0, local_size_y_id = 1) in;
layout(derivative_group_linearNV) in;
void main(){
}