forked from Ryan-rsm-McKenzie/CommonLibF4
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de3768a
commit 93a9806
Showing
13 changed files
with
487 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#pragma once | ||
|
||
#include "RE/Bethesda/BSFixedString.h" | ||
#include "RE/NetImmerse/NiSmartPointer.h" | ||
#include "RE/NetImmerse/NiTexture.h" | ||
|
||
namespace RE | ||
{ | ||
namespace BSGraphics | ||
{ | ||
class Texture; | ||
} | ||
|
||
struct ImageSpaceBaseData | ||
{ | ||
public: | ||
// members | ||
float hdrData[9]; // 00 | ||
float cinematicData[3]; // 24 | ||
float tintData[4]; // 30 | ||
float dofData[6]; // 40 | ||
}; | ||
static_assert(sizeof(ImageSpaceBaseData) == 0x58); | ||
|
||
struct ImageSpaceLUTData | ||
{ | ||
public: | ||
// members | ||
BSFixedString filename[4]; // 00 | ||
float weight[4]; // 20 | ||
NiPointer<NiTexture> niTexture[4]; // 30 | ||
BSGraphics::Texture* texture[4]; // 50 | ||
}; | ||
static_assert(sizeof(ImageSpaceLUTData) == 0x70); | ||
|
||
struct ImageSpaceModData | ||
{ | ||
public: | ||
// members | ||
float data[20]; // 00 | ||
}; | ||
static_assert(sizeof(ImageSpaceModData) == 0x50); | ||
|
||
struct ImageSpaceData | ||
{ | ||
public: | ||
// members | ||
ImageSpaceBaseData baseData; //00 | ||
ImageSpaceModData modData; //58 | ||
float highestTintAmount; //A8 | ||
float highestFadeAmount; //AC | ||
}; | ||
static_assert(sizeof(ImageSpaceData) == 0xB0); | ||
} |
Oops, something went wrong.