mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
337f44c916
Fixes #1340
33 lines
847 B
Metal
33 lines
847 B
Metal
struct Attributes {
|
|
packed_float2 M0;
|
|
packed_float2 M1;
|
|
packed_float4 M2;
|
|
};
|
|
|
|
struct Varyings {
|
|
float4 Position [[position]];
|
|
float2 M0;
|
|
float4 M1;
|
|
};
|
|
|
|
vertex Varyings Vertex(
|
|
uint vid [[vertex_id]],
|
|
const device Attributes* attributes [[buffer(0)]],
|
|
constant float2& U0 [[buffer(1)]]) {
|
|
Varyings varyings = {};
|
|
float4x4 l0 = float4x4(0);
|
|
l0 = float4x4((2.0) / ((U0).x), 0.0, 0.0, 0.0, 0.0, (2.0) / ((U0).y), 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, -1.0, -1.0, 0.0, 1.0);
|
|
varyings.Position = (l0) * (float4(attributes[vid].M0, 0.0, 1.0));
|
|
varyings.M0 = attributes[vid].M1;
|
|
varyings.M1 = attributes[vid].M2;
|
|
return varyings;
|
|
}
|
|
|
|
fragment float4 Fragment(
|
|
Varyings varyings [[stage_in]],
|
|
constant float2& U0 [[buffer(1)]]) {
|
|
float4 out = float4(0);
|
|
out = float4((varyings.Position).x, (varyings.M0).y, (varyings.M1).z, 1.0);
|
|
return out;
|
|
}
|