2018-10-12 21:37:01 -04:00
|
|
|
using System;
|
|
|
|
|
2018-02-20 15:09:23 -05:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
|
|
|
public struct GalVertexAttrib
|
|
|
|
{
|
2018-10-12 21:37:01 -04:00
|
|
|
public int Index { get; private set; }
|
|
|
|
public bool IsConst { get; private set; }
|
|
|
|
public int Offset { get; private set; }
|
|
|
|
public IntPtr Pointer { get; private set; }
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
|
|
public GalVertexAttribSize Size { get; private set; }
|
|
|
|
public GalVertexAttribType Type { get; private set; }
|
|
|
|
|
|
|
|
public bool IsBgra { get; private set; }
|
|
|
|
|
|
|
|
public GalVertexAttrib(
|
2018-04-29 16:58:38 -04:00
|
|
|
int Index,
|
2018-02-04 18:08:20 -05:00
|
|
|
bool IsConst,
|
|
|
|
int Offset,
|
2018-10-12 21:37:01 -04:00
|
|
|
IntPtr Pointer,
|
2018-02-04 18:08:20 -05:00
|
|
|
GalVertexAttribSize Size,
|
|
|
|
GalVertexAttribType Type,
|
|
|
|
bool IsBgra)
|
|
|
|
{
|
2018-04-29 16:58:38 -04:00
|
|
|
this.Index = Index;
|
2018-02-04 18:08:20 -05:00
|
|
|
this.IsConst = IsConst;
|
2018-10-12 21:37:01 -04:00
|
|
|
this.Pointer = Pointer;
|
2018-02-04 18:08:20 -05:00
|
|
|
this.Offset = Offset;
|
|
|
|
this.Size = Size;
|
|
|
|
this.Type = Type;
|
|
|
|
this.IsBgra = IsBgra;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|