mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-13 14:00:19 +00:00
* Stuff * More arg buffer stuff * Fixes * Rebase * Pass storage buffers to inline functions * Fix binding * Fix typo + Fix a couple shaders * Enforce ids * Dispose * Mark used buffers as resident * Update depth clear shader * Fix non-contiguous struct defs * Update ChangeBufferStride * Fix StorageBuffer assignments * Fix odyssey crash * Retain buffer bindings * Pad Std140 * Set texture data with safe buffers * Clone buffers * Always declare vert in * Stop clears from breaking OpenGL games * Fix depth clear * Use invariant position * Horribly inefficient texture & sampler arg buffers * Fix missing struct access * Minimise rebinds as much as possible * Build arg buffers on staging buffer
44 lines
883 B
Metal
44 lines
883 B
Metal
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct VertexOut {
|
|
float4 position [[position]];
|
|
};
|
|
|
|
struct FragmentOut {
|
|
float depth [[depth(any)]];
|
|
uint stencil [[stencil]];
|
|
};
|
|
|
|
struct ClearDepth {
|
|
float data;
|
|
};
|
|
|
|
struct ConstantBuffers {
|
|
constant ClearDepth* clear_depth;
|
|
};
|
|
|
|
vertex VertexOut vertexMain(ushort vid [[vertex_id]]) {
|
|
int low = vid & 1;
|
|
int high = vid >> 1;
|
|
|
|
VertexOut out;
|
|
|
|
out.position.x = (float(low) - 0.5f) * 2.0f;
|
|
out.position.y = (float(high) - 0.5f) * 2.0f;
|
|
out.position.z = 0.0f;
|
|
out.position.w = 1.0f;
|
|
|
|
return out;
|
|
}
|
|
|
|
fragment FragmentOut fragmentMain(VertexOut in [[stage_in]],
|
|
constant ConstantBuffers &constant_buffers [[buffer(20)]]) {
|
|
FragmentOut out;
|
|
|
|
out.depth = constant_buffers.clear_depth->data;
|
|
// out.stencil = stencil_clear;
|
|
|
|
return out;
|
|
}
|