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

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

using namespace metal;

struct UBOs
{
    float4 v;
};

struct spvDescriptorSetBuffer0
{
    constant UBOs* ubos [[id(0)]][2];
};

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

fragment main0_out main0(constant spvDescriptorSetBuffer0& spvDescriptorSet0 [[buffer(0)]])
{
    main0_out out = {};
    out.FragColor = spvDescriptorSet0.ubos[0]->v + spvDescriptorSet0.ubos[1]->v;
    return out;
}