This file contains hidden or 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
diff --git a/File_Format_Library/FileFormats/Shader/SHARC/SHARCFBNX.cs b/File_Format_Library/FileFormats/Shader/SHARC/SHARCFBNX.cs | |
index def683f4..39af78ac 100644 | |
--- a/File_Format_Library/FileFormats/Shader/SHARC/SHARCFBNX.cs | |
+++ b/File_Format_Library/FileFormats/Shader/SHARC/SHARCFBNX.cs | |
@@ -21,6 +21,9 @@ namespace FirstPlugin | |
{ | |
public List<ShaderProgram> ShaderPrograms = new List<ShaderProgram>(); | |
public List<ShaderVariation> Variations = new List<ShaderVariation>(); | |
+ public byte[] BinaryArray; | |
+ public uint BinaryArraySize; |
This file contains hidden or 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
#include <cstdio> | |
#include <bit> | |
#include <cstdlib> | |
#include <span> | |
#include <lz4.h> | |
#include <string_view> | |
#include <filesystem> | |
/* Buffers. */ | |
namespace { |