mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
12 lines
137 B
GLSL
12 lines
137 B
GLSL
#version 310 es
|
|
|
|
precision highp float;
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
|
|
void main() {
|
|
return;
|
|
}
|
|
|