mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
#include <metal_stdlib>
|
||
|
#include <simd/simd.h>
|
||
|
|
||
|
using namespace metal;
|
||
|
|
||
|
constant uint3 gl_WorkGroupSize [[maybe_unused]] = uint3(8u, 4u, 2u);
|
||
|
|
||
|
kernel void main0()
|
||
|
{
|
||
|
}
|
||
|
|