mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:00:47 -07:00
Initial support for the guest OpenGL driver (NVIDIA and Nouveau)
This commit is contained in:
16
Ryujinx.Graphics.Gpu/State/BlendStateCommon.cs
Normal file
16
Ryujinx.Graphics.Gpu/State/BlendStateCommon.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Ryujinx.Graphics.GAL.Blend;
|
||||
|
||||
namespace Ryujinx.Graphics.Gpu.State
|
||||
{
|
||||
struct BlendStateCommon
|
||||
{
|
||||
public Boolean32 SeparateAlpha;
|
||||
public BlendOp ColorOp;
|
||||
public BlendFactor ColorSrcFactor;
|
||||
public BlendFactor ColorDstFactor;
|
||||
public BlendOp AlphaOp;
|
||||
public BlendFactor AlphaSrcFactor;
|
||||
public uint Unknown0x1354;
|
||||
public BlendFactor AlphaDstFactor;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user