mirror of
https://github.com/libretro/RetroArch
synced 2025-03-11 10:13:43 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
12 lines
145 B
Plaintext
12 lines
145 B
Plaintext
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
kernel void main0()
|
|
{
|
|
threadgroup int foo[1337];
|
|
foo[0] = 13;
|
|
}
|
|
|