mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
501fd33b68
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
25 lines
487 B
GLSL
25 lines
487 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct main0_in
|
|
{
|
|
float2 vTexCoord [[user(locn0)]];
|
|
};
|
|
|
|
struct main0_out
|
|
{
|
|
float4 FragColor [[color(0)]];
|
|
};
|
|
|
|
fragment main0_out main0(main0_in in [[stage_in]], texture2d<float> Texture [[texture(0)]], sampler TextureSmplr [[sampler(0)]])
|
|
{
|
|
main0_out out = {};
|
|
float4 _19 = Texture.sample(TextureSmplr, in.vTexCoord);
|
|
float _22 = _19.x;
|
|
out.FragColor = float4(_22 * _22);
|
|
return out;
|
|
}
|
|
|