mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-23 00:35:37 +00:00
63 lines
1.8 KiB
Metal
63 lines
1.8 KiB
Metal
/// A custom resolve kernel that averages color at all sample points.
|
|
#include <metal_stdlib>
|
|
using namespace metal;
|
|
|
|
// https://developer.apple.com/documentation/metal/metal_sample_code_library/improving_edge-rendering_quality_with_multisample_antialiasing_msaa?language=objc
|
|
kernel void colorResolveKernel(texture2d_ms<float, access::read> multisampledTexture [[texture(0)]],
|
|
texture2d<float, access::write> resolvedTexture [[texture(1)]],
|
|
uint2 gid [[thread_position_in_grid]])
|
|
{
|
|
const uint count = multisampledTexture.get_num_samples();
|
|
|
|
float4 resolved_color = 0;
|
|
|
|
for (uint i = 0; i < count; ++i)
|
|
{
|
|
resolved_color += multisampledTexture.read(gid, i);
|
|
}
|
|
|
|
resolved_color /= count;
|
|
|
|
resolvedTexture.write(resolved_color, gid);
|
|
}
|
|
|
|
kernel void depthResolveKernel(texture2d_ms<float, access::read> multisampledTexture [[texture(0)]],
|
|
texture2d<float, access::write> resolvedTexture [[texture(1)]],
|
|
uint2 gid [[thread_position_in_grid]])
|
|
{
|
|
const uint count = multisampledTexture.get_num_samples();
|
|
|
|
float resolved_depth = 0;
|
|
|
|
for (uint i = 0; i < count; ++i)
|
|
{
|
|
resolved_depth += multisampledTexture.read(gid, i).r;
|
|
}
|
|
|
|
resolved_depth /= count;
|
|
|
|
resolvedTexture.write(float4(resolved_depth, 0, 0, 0), gid);
|
|
}
|
|
|
|
struct DepthClearUBO
|
|
{
|
|
float depth;
|
|
};
|
|
|
|
struct DepthClearOut
|
|
{
|
|
float4 pos [[position]];
|
|
};
|
|
|
|
vertex DepthClearOut depthClearVertex(constant DepthClearUBO& ubo [[buffer(0)]], uint vertexId [[vertex_id]])
|
|
{
|
|
DepthClearOut out = {};
|
|
float2 uv = float2(float((vertexId << uint(1)) & 2u), float(vertexId & 2u));
|
|
out.pos = float4((uv * float2(2.0, -2.0)) + float2(-1.0, 1.0), ubo.depth, 1.0);
|
|
return out;
|
|
}
|
|
|
|
fragment void depthClearFragment()
|
|
{
|
|
}
|