1
0
mirror of https://github.com/dege-diosg/dgVoodoo2 synced 2024-07-08 20:51:02 +02:00

Update to v2.78

This commit is contained in:
Dege 2022-01-11 12:48:26 +01:00
parent b82e218167
commit 2a038f37b2
5 changed files with 13 additions and 9 deletions

Binary file not shown.

View File

@ -85,17 +85,20 @@ struct ConfigGeneral
enum Resolution enum Resolution
{ {
R_Unforced = 0, R_Unforced = 0,
R_Max = 0xFFFFFFFF, // It can have a parameter, the aspect ratio
// All dynamic resolutions can have an integer scale value parameter (0 - 255)
R_Max = 0xFFFFFFFF, // It can have the aspect ratio as parameter
R_Max_ISF = 0xFFFFFFFE, R_Max_ISF = 0xFFFFFFFE,
R_MaxFHD = 0xFFFFFFFD, R_MaxFHD = 0xFFFFFFFD,
R_MaxFHD_ISF = 0xFFFFFFFC, R_MaxFHD_ISF = 0xFFFFFFFC,
R_MaxQHD = 0xFFFFFFFB, R_MaxQHD = 0xFFFFFFFB,
R_MaxQHD_ISF = 0xFFFFFFFA, R_MaxQHD_ISF = 0xFFFFFFFA,
R_IntegerScaled = 0xFFFFFFF9, // It has the integer scale value as a parameter R_IntegerScaled = 0xFFFFFFF9, // It always has the integer scale value parameter
R_Desktop = 0xFFFFFFF8, R_Desktop = 0xFFFFFFF8,
// Optional parameters for R_Max // Optional parameters for R_Max
PR_Max_4_3 = 0x100, PR_Max_4_3 = 0x100,
PR_Max_16_9 = 0x101 PR_Max_16_9 = 0x101
}; };
@ -164,7 +167,7 @@ struct ConfigGeneralExt
FSA_DefaultAttributes = 0x0, FSA_DefaultAttributes = 0x0,
FSA_Fake = 0x1, FSA_Fake = 0x1,
FSA_FlagsMask = 0x1 FSA_FlagsMask = 0x1
}; };
@ -326,7 +329,7 @@ struct ConfigGlideExt
NumOfDitheringBehaviors NumOfDitheringBehaviors
}; };
DitheringEffect ditheringEffect; DitheringEffect ditheringEffect;
Dithering dithering; Dithering dithering;
UInt32 ditherOrderedMatrixSizeScale; UInt32 ditherOrderedMatrixSizeScale;
@ -351,6 +354,7 @@ struct ConfigDirectX
Radeon8500, Radeon8500,
MatroxParhelia512, MatroxParhelia512,
GeforceFX5700Ultra, GeforceFX5700Ultra,
Geforce9800GT,
NumOfCardTypes NumOfCardTypes
}; };
@ -458,7 +462,7 @@ struct ConfigDirectXExt
NumOfDitheringBehaviors NumOfDitheringBehaviors
}; };
enum DepthBufferBitDepth enum DepthBufferBitDepth
{ {
DBD_AppDriven = 0, DBD_AppDriven = 0,
@ -477,7 +481,7 @@ struct ConfigDirectXExt
NumOfDefault3DRenderFormats NumOfDefault3DRenderFormats
}; };
enum DefEnumResolutions enum DefEnumResolutions
{ {
DER_None = 0, DER_None = 0,
@ -487,7 +491,7 @@ struct ConfigDirectXExt
NumOfDefEnumResolutions NumOfDefEnumResolutions
}; };
enum EnumResBitDepths enum EnumResBitDepths
{ {
ERBD_8 = 0x1, ERBD_8 = 0x1,
@ -504,7 +508,7 @@ struct ConfigDirectXExt
UInt32 height; UInt32 height;
UInt32 refRate; UInt32 refRate;
}; };
AdapterIDType adapterIDType; AdapterIDType adapterIDType;
UInt32 vendorID; UInt32 vendorID;
UInt32 deviceID; UInt32 deviceID;

Binary file not shown.