From a5e20a8fd1de446d2948c500c95cf65b88a36687 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 17 Jan 2020 05:55:38 -0300 Subject: Add sampler border color support on the GPU (#893) --- Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs') diff --git a/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs b/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs index 80b1b70f..77af1ce0 100644 --- a/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs +++ b/Ryujinx.Graphics.Gpu/Image/SamplerDescriptor.cs @@ -55,10 +55,10 @@ namespace Ryujinx.Graphics.Gpu.Image public uint Word1; public uint Word2; public uint Word3; - public uint BorderColorR; - public uint BorderColorG; - public uint BorderColorB; - public uint BorderColorA; + public float BorderColorR; + public float BorderColorG; + public float BorderColorB; + public float BorderColorA; /// /// Unpacks the texture wrap mode along the X axis. -- cgit v1.2.3