Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nonuniform-constructor.msl2.frag « frag « shaders-msl-no-opt « reference - github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1ad5c5fb252157c9d99ad2ebf13f19ce9895590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <metal_stdlib>
#include <simd/simd.h>

using namespace metal;

struct main0_out
{
    float4 FragColor [[color(0)]];
};

struct main0_in
{
    float2 vUV [[user(locn0)]];
    int vIndex [[user(locn1)]];
};

fragment main0_out main0(main0_in in [[stage_in]], array<texture2d<float>, 10> uTex [[texture(0)]], sampler Immut [[sampler(0)]])
{
    main0_out out = {};
    out.FragColor = uTex[in.vIndex].sample(Immut, in.vUV);
    return out;
}