mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
Fix hashing for FragmentConfig
This commit is contained in:
parent
a419312cc7
commit
be1c801fc2
1 changed files with 2 additions and 2 deletions
|
@ -12,11 +12,11 @@
|
||||||
namespace PICA {
|
namespace PICA {
|
||||||
struct OutputConfig {
|
struct OutputConfig {
|
||||||
union {
|
union {
|
||||||
u32 raw;
|
u32 raw{};
|
||||||
// Merge the enable + compare function into 1 field to avoid duplicate shaders
|
// Merge the enable + compare function into 1 field to avoid duplicate shaders
|
||||||
// enable == off means a CompareFunction of Always
|
// enable == off means a CompareFunction of Always
|
||||||
BitField<0, 3, CompareFunction> alphaTestFunction;
|
BitField<0, 3, CompareFunction> alphaTestFunction;
|
||||||
BitField<4, 1, u32> depthMapEnable;
|
BitField<3, 1, u32> depthMapEnable;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue