2018-10-12 21:37:01 -04:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
|
|
|
public struct GalVertexBinding
|
|
|
|
{
|
2019-07-01 22:39:22 -04:00
|
|
|
// VboKey shouldn't be here, but ARB_vertex_attrib_binding is core since 4.3
|
2018-10-12 21:37:01 -04:00
|
|
|
|
|
|
|
public bool Enabled;
|
|
|
|
public int Stride;
|
|
|
|
public long VboKey;
|
|
|
|
public bool Instanced;
|
|
|
|
public int Divisor;
|
|
|
|
public GalVertexAttrib[] Attribs;
|
|
|
|
}
|
|
|
|
}
|