mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
Merge pull request #547 from OFFTKP/hashing
Fix hashing for FragmentConfig
This commit is contained in:
commit
ed67069487
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