mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-27 09:42:26 -05:00
Fix RGB Seizure
This commit is contained in:
committed by
Evan Husted
parent
8bf33b3098
commit
671aff68a6
@@ -32,6 +32,5 @@ fragment float4 fragmentMain(CopyVertexOut in [[stage_in]],
|
||||
texture2d<float> tex) {
|
||||
constexpr sampler sam(min_filter::nearest, mag_filter::nearest, mip_filter::none);
|
||||
|
||||
float3 color = tex.sample(sam, in.uv).xyz;
|
||||
return float4(color, 1.0f);
|
||||
return tex.sample(sam, in.uv).xyzw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user