mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
6 lines
106 B
HLSL
6 lines
106 B
HLSL
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
float3 a = cross(float3(0.0, 1.0, 2.0), float3(0.0, 1.0, 2.0));
|
|
}
|