SPIRV-Cross/reference/shaders-msl-no-opt/packing/matrix-2x3-std430.comp
Hans-Kristian Arntzen 1f6653ec07 MSL: Do not override variable name late.
If we have emitted block IO lowering at the end of vertex shader, we
will end up using the wrong name. Forcing a v_ prefix does not solve any
actual problems since the intentifier already has to be valid.
2023-03-30 18:30:44 +02:00

88 lines
2.3 KiB
Plaintext

#pragma clang diagnostic ignored "-Wmissing-prototypes"
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct SSBOCol
{
float2x3 col_major0;
float2x3 col_major1;
};
struct SSBORow
{
float3x2 row_major0;
float3x2 row_major1;
};
constant uint3 gl_WorkGroupSize [[maybe_unused]] = uint3(1u);
static inline __attribute__((always_inline))
void load_store_to_variable_col_major(device SSBOCol& _29)
{
float2x3 loaded = _29.col_major0;
_29.col_major1 = loaded;
}
static inline __attribute__((always_inline))
void load_store_to_variable_row_major(device SSBORow& _41)
{
float2x3 loaded = transpose(_41.row_major0);
_41.row_major0 = transpose(loaded);
}
static inline __attribute__((always_inline))
void copy_col_major_to_col_major(device SSBOCol& _29)
{
_29.col_major0 = _29.col_major1;
}
static inline __attribute__((always_inline))
void copy_col_major_to_row_major(device SSBOCol& _29, device SSBORow& _41)
{
_41.row_major0 = transpose(_29.col_major0);
}
static inline __attribute__((always_inline))
void copy_row_major_to_col_major(device SSBOCol& _29, device SSBORow& _41)
{
_29.col_major0 = transpose(_41.row_major0);
}
static inline __attribute__((always_inline))
void copy_row_major_to_row_major(device SSBORow& _41)
{
_41.row_major0 = _41.row_major1;
}
static inline __attribute__((always_inline))
void copy_columns(device SSBOCol& _29, device SSBORow& _41)
{
_29.col_major0[1] = float3(_41.row_major0[0][1], _41.row_major0[1][1], _41.row_major0[2][1]);
_41.row_major0[0][1] = _29.col_major0[1].x;
_41.row_major0[1][1] = _29.col_major0[1].y;
_41.row_major0[2][1] = _29.col_major0[1].z;
}
static inline __attribute__((always_inline))
void copy_elements(device SSBOCol& _29, device SSBORow& _41)
{
((device float*)&_29.col_major0[0])[1u] = ((device float*)&_41.row_major0[1u])[0];
((device float*)&_41.row_major0[1u])[0] = ((device float*)&_29.col_major0[0])[1u];
}
kernel void main0(device SSBOCol& _29 [[buffer(0)]], device SSBORow& _41 [[buffer(1)]])
{
load_store_to_variable_col_major(_29);
load_store_to_variable_row_major(_41);
copy_col_major_to_col_major(_29);
copy_col_major_to_row_major(_29, _41);
copy_row_major_to_col_major(_29, _41);
copy_row_major_to_row_major(_41);
copy_columns(_29, _41);
copy_elements(_29, _41);
}