Skip to content

Commit

Permalink
fix shadows + minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed Nov 8, 2023
1 parent 3a90d2a commit d5cf397
Show file tree
Hide file tree
Showing 198 changed files with 404,008 additions and 72,596 deletions.
16 changes: 9 additions & 7 deletions Editor/Source/HierarchyPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -683,11 +683,13 @@ namespace Lumos
ImGui::Unindent();

// For background colour
ImGui::PushStyleColor(ImGuiCol_ChildBg, ImGui::GetStyleColorVec4(ImGuiCol_TitleBg) * 1.1f);
const float backup_border_size = ImGui::GetStyle().ChildBorderSize;
ImGui::GetStyle().ChildBorderSize = 6.0f;
ImGui::BeginChild("Nodes", ImVec2(0.0f, 0.0f), true, ImGuiWindowFlags_AlwaysUseWindowPadding);
ImGui::GetStyle().ChildBorderSize = backup_border_size;
/*
ImGui::PushStyleColor(ImGuiCol_ChildBg, ImGui::GetStyleColorVec4(ImGuiCol_TitleBg) * 1.1f);
const float backup_border_size = ImGui::GetStyle().ChildBorderSize;
ImGui::GetStyle().ChildBorderSize = 6.0f;
ImGui::BeginChild("Nodes", ImVec2(0.0f, 0.0f), true, ImGuiWindowFlags_AlwaysUseWindowPadding);
ImGui::GetStyle().ChildBorderSize = backup_border_size;
*/

// Right click popup
if(ImGui::BeginPopupContextWindow())
Expand Down Expand Up @@ -790,8 +792,8 @@ namespace Lumos
ImGui::EndDragDropTarget();
}
}
ImGui::EndChild();
ImGui::PopStyleColor();
// ImGui::EndChild();
// ImGui::PopStyleColor();
}
ImGui::End();
}
Expand Down
5 changes: 3 additions & 2 deletions Editor/Source/InspectorPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,8 @@ end
float tileSize = (float)sprite.SpriteSheetTileSize;

Lumos::ImGuiUtilities::Property("By Tile", byTile);
Lumos::ImGuiUtilities::Property("Tile Size", tileSize);
if(Lumos::ImGuiUtilities::Property("Tile Size", tileSize))
sprite.SpriteSheetTileSize = tileSize;

ImGui::AlignTextToFramePadding();
ImGui::TextUnformatted("Current State");
Expand Down Expand Up @@ -2435,7 +2436,7 @@ namespace Lumos
{
LUMOS_PROFILE_FUNCTION();

auto selectedEntities = m_Editor->GetSelected();
const auto& selectedEntities = m_Editor->GetSelected();

if(ImGui::Begin(m_Name.c_str(), &m_Active))
{
Expand Down
26 changes: 14 additions & 12 deletions Editor/Source/SceneSettingsPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,36 +26,38 @@ namespace Lumos
Lumos::ImGuiUtilities::ScopedStyle(ImGuiStyleVar_FramePadding, ImVec2(2, 2));
Lumos::ImGuiUtilities::PushID();
{
auto sceneName = m_CurrentScene->GetSceneName();
int sceneVersion = m_CurrentScene->GetSceneVersion();
auto& sceneSettings = m_CurrentScene->GetSettings();
const auto& sceneName = m_CurrentScene->GetSceneName();
int sceneVersion = m_CurrentScene->GetSceneVersion();
auto& sceneSettings = m_CurrentScene->GetSettings();

if(m_NameUpdated)
sceneName = m_SceneName;
String8 nameBuffer = { 0 };
nameBuffer.str = PushArray(m_Editor->GetFrameArena(), uint8_t, INPUT_BUF_SIZE);
nameBuffer.size = INPUT_BUF_SIZE;

MemoryCopy(nameBuffer.str, sceneName.c_str(), sceneName.size());

ImVec2 contentRegionAvailable = ImGui::GetContentRegionAvail();
ImGui::PushItemWidth(contentRegionAvailable.x * 0.5f);

{
ImGuiUtilities::ScopedFont boldFont(ImGui::GetIO().Fonts->Fonts[1]);
if(ImGuiUtilities::InputText(sceneName))
if(ImGui::InputText("##Name", (char*)nameBuffer.str, INPUT_BUF_SIZE, 0))
{
if(!m_NameUpdated)
m_SceneName = m_CurrentScene->GetSceneName();
m_NameUpdated = true;

m_CurrentScene->SetName((char*)nameBuffer.str);
}

if(!ImGui::IsItemActive() && m_NameUpdated)
{
m_NameUpdated = false;
std::string scenePath;
if(FileSystem::Get().ResolvePhysicalPath("//Assets/Scenes/" + m_CurrentScene->GetSceneName() + ".lsn", scenePath))
if(FileSystem::Get().ResolvePhysicalPath("//Assets/Scenes/" + m_SceneName + ".lsn", scenePath))
{
m_CurrentScene->SetName(sceneName);
// m_CurrentScene->Serialise(m_Editor->GetProjectSettings().m_ProjectRoot + "Assets/Scenes/");

std::filesystem::rename(scenePath, m_Editor->GetProjectSettings().m_ProjectRoot + "Assets/Scenes/" + m_CurrentScene->GetSceneName() + ".lsn");
}
else
m_CurrentScene->SetName(sceneName);

// Save project with updated scene name
m_Editor->Serialise();
Expand Down
1 change: 0 additions & 1 deletion Editor/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ project "LumosEditor"
cppdialect "C++17"
staticruntime "Off"
systemversion "latest"
entrypoint "WinMainCRTStartup"
conformancemode "on"

defines
Expand Down
Binary file modified Lumos/Assets/Shaders/CompiledSPV/BRDFLUT.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2D.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2D.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2DLine.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2DLine.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2DPoint.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Batch2DPoint.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Bloom.comp.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Bloom.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/ChromaticAberation.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/CreateEnvironmentMap.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Debanding.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DeferredColour.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DeferredColour.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DeferredColourAnim.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DeferredLight.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DeferredLight.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DepthOfField.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DepthPrePass.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/DepthPrePassAlpha.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/EnvironmentIrradiance.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/EnvironmentMipFilter.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/FXAA.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/FXAACompute.comp.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/FilmicGrain.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/ForwardPBR.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/ForwardPBR.vert.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Grid.frag.spv
Binary file not shown.
Binary file modified Lumos/Assets/Shaders/CompiledSPV/Grid.vert.spv
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_BRDFLUTfragspv_size = 8116;
constexpr std::array<uint32_t, 2029> spirv_BRDFLUTfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000167, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000167, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x0000014F, 0x0000015E, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2DLinefragspv_size = 688;
constexpr std::array<uint32_t, 172> spirv_Batch2DLinefragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000013, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000013, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000009, 0x0000000D, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2DLinevertspv_size = 1604;
constexpr std::array<uint32_t, 401> spirv_Batch2DLinevertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x0000002E, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x0000002E, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0009000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x0000000D, 0x00000019, 0x00000025,
0x0000002B, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252, 0x72617065,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2DPointfragspv_size = 1040;
constexpr std::array<uint32_t, 260> spirv_Batch2DPointfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000024, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000024, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x0000000E, 0x0000001F, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2DPointvertspv_size = 1924;
constexpr std::array<uint32_t, 481> spirv_Batch2DPointvertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000039, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000039, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x000B000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x0000000D, 0x00000019, 0x00000026,
0x0000002C, 0x00000031, 0x00000036, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2Dfragspv_size = 5584;
constexpr std::array<uint32_t, 1396> spirv_Batch2Dfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000101, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000101, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000022, 0x000000FF, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Batch2Dvertspv_size = 1984;
constexpr std::array<uint32_t, 496> spirv_Batch2Dvertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x0000003D, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x0000003D, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x000B000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x0000000D, 0x00000019, 0x00000026,
0x0000002C, 0x00000031, 0x0000003A, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47,
Expand Down
2 changes: 1 addition & 1 deletion Lumos/Assets/Shaders/CompiledSPV/Headers/Bloomcompspv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Bloomcompspv_size = 14132;
constexpr std::array<uint32_t, 3533> spirv_Bloomcompspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000258, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x00000258, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0006000F, 0x00000005, 0x00000004, 0x6E69616D, 0x00000000, 0x000001AB,
0x00060010, 0x00000004, 0x00000011, 0x00000001, 0x00000001, 0x00000001, 0x00030003, 0x00000002,
Expand Down
2 changes: 1 addition & 1 deletion Lumos/Assets/Shaders/CompiledSPV/Headers/Bloomfragspv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Bloomfragspv_size = 18908;
constexpr std::array<uint32_t, 4727> spirv_Bloomfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000339, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x00000339, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000299,
0x00000337, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_ChromaticAberationfragspv_size = 2796;
constexpr std::array<uint32_t, 699> spirv_ChromaticAberationfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x0000006B, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x0000006B, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000022,
0x00000065, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_CreateEnvironmentMapfragspv_size = 19472;
constexpr std::array<uint32_t, 4868> spirv_CreateEnvironmentMapfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000362, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000362, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000118, 0x00000340, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_Debandingfragspv_size = 1736;
constexpr std::array<uint32_t, 434> spirv_Debandingfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000042, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000042, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0008000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x0000002D, 0x00000033, 0x0000003B,
0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DeferredColourAnimvertspv_size = 4968;
constexpr std::array<uint32_t, 1242> spirv_DeferredColourAnimvertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x000000BA, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x000000BA, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0012000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x00000015, 0x0000001E, 0x00000066,
0x00000069, 0x0000008A, 0x00000094, 0x00000095, 0x00000099, 0x0000009B, 0x0000009D, 0x0000009E,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DeferredColourfragspv_size = 8400;
constexpr std::array<uint32_t, 2100> spirv_DeferredColourfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x0000015E, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x0000015E, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x000E000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000057, 0x000000BA, 0x000000CB,
0x00000143, 0x00000145, 0x00000147, 0x0000014D, 0x0000015C, 0x0000015D, 0x00030010, 0x00000004,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DeferredColourvertspv_size = 2372;
constexpr std::array<uint32_t, 593> spirv_DeferredColourvertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000049, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000049, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0010000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x00000009, 0x0000000C, 0x0000001F,
0x0000002A, 0x0000002C, 0x00000031, 0x00000033, 0x00000035, 0x00000036, 0x00000046, 0x00000047,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DeferredLightfragspv_size = 42920;
constexpr std::array<uint32_t, 10730> spirv_DeferredLightfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x000006E6, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x000006E6, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0008000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x000005B7,
0x0000064F, 0x000006AC, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DeferredLightvertspv_size = 1276;
constexpr std::array<uint32_t, 319> spirv_DeferredLightvertspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000026, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000026, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x000D000F, 0x00000000, 0x00000004, 0x6E69616D, 0x00000000, 0x0000000A, 0x0000000F, 0x00000019,
0x0000001B, 0x00000020, 0x00000022, 0x00000024, 0x00000025, 0x00030003, 0x00000002, 0x000001C2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DepthOfFieldfragspv_size = 6316;
constexpr std::array<uint32_t, 1579> spirv_DepthOfFieldfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x000000F4, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x000000F4, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x000000DF,
0x000000EC, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DepthPrePassAlphafragspv_size = 2668;
constexpr std::array<uint32_t, 667> spirv_DepthPrePassAlphafragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000040, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000040, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000014, 0x0000002C, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_DepthPrePassfragspv_size = 1012;
constexpr std::array<uint32_t, 253> spirv_DepthPrePassfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x0000001F, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x0000001F, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000009, 0x0000000F, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_EnvironmentIrradiancefragspv_size = 7740;
constexpr std::array<uint32_t, 1935> spirv_EnvironmentIrradiancefragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000159, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x07230203, 0x00010000, 0x000D000B, 0x00000159, 0x00000000, 0x00020011, 0x00000001, 0x0006000B,
0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E, 0x00000000, 0x00000001,
0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000102, 0x00000151, 0x00030010,
0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004, 0x415F4C47, 0x735F4252,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_EnvironmentMipFilterfragspv_size = 11024;
constexpr std::array<uint32_t, 2756> spirv_EnvironmentMipFilterfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x000001DF, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x000001DF, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x0000013F,
0x00000153, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_FXAAComputecompspv_size = 8828;
constexpr std::array<uint32_t, 2207> spirv_FXAAComputecompspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000167, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x00000167, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0006000F, 0x00000005, 0x00000004, 0x6E69616D, 0x00000000, 0x00000111,
0x00060010, 0x00000004, 0x00000011, 0x00000004, 0x00000004, 0x00000001, 0x00030003, 0x00000002,
Expand Down
2 changes: 1 addition & 1 deletion Lumos/Assets/Shaders/CompiledSPV/Headers/FXAAfragspv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

constexpr uint32_t spirv_FXAAfragspv_size = 7740;
constexpr std::array<uint32_t, 1935> spirv_FXAAfragspv = {
0x07230203, 0x00010000, 0x000D000A, 0x00000138, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x07230203, 0x00010000, 0x000D000B, 0x00000138, 0x00000000, 0x00020011, 0x00000001, 0x00020011,
0x00000032, 0x0006000B, 0x00000001, 0x4C534C47, 0x6474732E, 0x3035342E, 0x00000000, 0x0003000E,
0x00000000, 0x00000001, 0x0007000F, 0x00000004, 0x00000004, 0x6E69616D, 0x00000000, 0x00000113,
0x00000120, 0x00030010, 0x00000004, 0x00000007, 0x00030003, 0x00000002, 0x000001C2, 0x00090004,
Expand Down
Loading

0 comments on commit d5cf397

Please sign in to comment.