mirror of https://github.com/PCSX2/pcsx2.git
parent
e043822a93
commit
5c7d9d08e2
|
@ -128,6 +128,7 @@ EXPORT_C_(int) GSinit()
|
||||||
// const type qualifier from all the affected variables.
|
// const type qualifier from all the affected variables.
|
||||||
theApp.Init();
|
theApp.Init();
|
||||||
|
|
||||||
|
GSUtil::Init();
|
||||||
GSBlock::InitVectors();
|
GSBlock::InitVectors();
|
||||||
GSClut::InitVectors();
|
GSClut::InitVectors();
|
||||||
#ifdef ENABLE_OPENCL
|
#ifdef ENABLE_OPENCL
|
||||||
|
|
|
@ -102,7 +102,8 @@ public:
|
||||||
uint32 CompatibleBitsField[64][2];
|
uint32 CompatibleBitsField[64][2];
|
||||||
uint32 SharedBitsField[64][2];
|
uint32 SharedBitsField[64][2];
|
||||||
|
|
||||||
GSUtilMaps()
|
// Defer init to avoid AVX2 illegal instructions
|
||||||
|
void Init()
|
||||||
{
|
{
|
||||||
PrimClassField[GS_POINTLIST] = GS_POINT_CLASS;
|
PrimClassField[GS_POINTLIST] = GS_POINT_CLASS;
|
||||||
PrimClassField[GS_LINELIST] = GS_LINE_CLASS;
|
PrimClassField[GS_LINELIST] = GS_LINE_CLASS;
|
||||||
|
@ -163,6 +164,11 @@ public:
|
||||||
|
|
||||||
} s_maps;
|
} s_maps;
|
||||||
|
|
||||||
|
void GSUtil::Init()
|
||||||
|
{
|
||||||
|
s_maps.Init();
|
||||||
|
}
|
||||||
|
|
||||||
GS_PRIM_CLASS GSUtil::GetPrimClass(uint32 prim)
|
GS_PRIM_CLASS GSUtil::GetPrimClass(uint32 prim)
|
||||||
{
|
{
|
||||||
return (GS_PRIM_CLASS)s_maps.PrimClassField[prim];
|
return (GS_PRIM_CLASS)s_maps.PrimClassField[prim];
|
||||||
|
|
|
@ -37,6 +37,8 @@ struct OCLDeviceDesc
|
||||||
class GSUtil
|
class GSUtil
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
static void Init();
|
||||||
|
|
||||||
static const char* GetLibName();
|
static const char* GetLibName();
|
||||||
|
|
||||||
static GS_PRIM_CLASS GetPrimClass(uint32 prim);
|
static GS_PRIM_CLASS GetPrimClass(uint32 prim);
|
||||||
|
|
Loading…
Reference in New Issue