Skip to content
Snippets Groups Projects
Verified Commit a7694ca0 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#100] Added include path to shader compiler, allowed compiling glsl from...

[#100] Added include path to shader compiler, allowed compiling glsl from string and created base for upscaling module

Signed-off-by: default avatarTobias Frisch <tfrisch@uni-koblenz.de>
parent 7d636b62
No related branches found
No related tags found
1 merge request!82Resolve "Upscaling Module"
Pipeline #26411 passed
...@@ -28,3 +28,6 @@ ...@@ -28,3 +28,6 @@
[submodule "lib/VulkanMemoryAllocator-Hpp"] [submodule "lib/VulkanMemoryAllocator-Hpp"]
path = lib/VulkanMemoryAllocator-Hpp path = lib/VulkanMemoryAllocator-Hpp
url = https://github.com/malte-v/VulkanMemoryAllocator-Hpp.git url = https://github.com/malte-v/VulkanMemoryAllocator-Hpp.git
[submodule "modules/upscaling/lib/FidelityFX-FSR"]
path = modules/upscaling/lib/FidelityFX-FSR
url = https://github.com/GPUOpen-Effects/FidelityFX-FSR.git
...@@ -7,3 +7,4 @@ add_subdirectory(material) ...@@ -7,3 +7,4 @@ add_subdirectory(material)
add_subdirectory(scene) add_subdirectory(scene)
add_subdirectory(shader_compiler) add_subdirectory(shader_compiler)
add_subdirectory(testing) add_subdirectory(testing)
add_subdirectory(upscaling)
...@@ -9,8 +9,13 @@ namespace vkcv::shader { ...@@ -9,8 +9,13 @@ namespace vkcv::shader {
class Compiler { class Compiler {
private: private:
public: public:
virtual bool compileSource(ShaderStage shaderStage, const char* shaderSource,
const ShaderCompiledFunction& compiled,
const std::filesystem::path& includePath) = 0;
virtual void compile(ShaderStage shaderStage, const std::filesystem::path& shaderPath, virtual void compile(ShaderStage shaderStage, const std::filesystem::path& shaderPath,
const ShaderCompiledFunction& compiled, bool update = false) = 0; const ShaderCompiledFunction& compiled,
const std::filesystem::path& includePath, bool update) = 0;
}; };
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
namespace vkcv::shader { namespace vkcv::shader {
class GLSLCompiler { class GLSLCompiler : Compiler {
private: private:
public: public:
GLSLCompiler(); GLSLCompiler();
...@@ -20,8 +20,13 @@ namespace vkcv::shader { ...@@ -20,8 +20,13 @@ namespace vkcv::shader {
GLSLCompiler& operator=(const GLSLCompiler& other); GLSLCompiler& operator=(const GLSLCompiler& other);
GLSLCompiler& operator=(GLSLCompiler&& other) = default; GLSLCompiler& operator=(GLSLCompiler&& other) = default;
bool compileSource(ShaderStage shaderStage, const char* shaderSource,
const ShaderCompiledFunction& compiled,
const std::filesystem::path& includePath);
void compile(ShaderStage shaderStage, const std::filesystem::path& shaderPath, void compile(ShaderStage shaderStage, const std::filesystem::path& shaderPath,
const ShaderCompiledFunction& compiled, bool update = false); const ShaderCompiledFunction& compiled,
const std::filesystem::path& includePath = "", bool update = false) override;
}; };
......
...@@ -197,22 +197,21 @@ namespace vkcv::shader { ...@@ -197,22 +197,21 @@ namespace vkcv::shader {
return true; return true;
} }
void GLSLCompiler::compile(ShaderStage shaderStage, const std::filesystem::path &shaderPath, bool GLSLCompiler::compileSource(ShaderStage shaderStage, const char* shaderSource,
const ShaderCompiledFunction& compiled, bool update) { const ShaderCompiledFunction &compiled,
const std::filesystem::path& includePath) {
const EShLanguage language = findShaderLanguage(shaderStage); const EShLanguage language = findShaderLanguage(shaderStage);
if (language == EShLangCount) { if (language == EShLangCount) {
vkcv_log(LogLevel::ERROR, "Shader stage not supported (%s)", shaderPath.string().c_str()); vkcv_log(LogLevel::ERROR, "Shader stage not supported");
return; return false;
} }
const std::vector<char> code = readShaderCode(shaderPath);
glslang::TShader shader (language); glslang::TShader shader (language);
glslang::TProgram program; glslang::TProgram program;
const char *shaderStrings [1]; const char *shaderStrings [1];
shaderStrings[0] = code.data(); shaderStrings[0] = shaderSource;
shader.setStrings(shaderStrings, 1); shader.setStrings(shaderStrings, 1);
...@@ -222,41 +221,43 @@ namespace vkcv::shader { ...@@ -222,41 +221,43 @@ namespace vkcv::shader {
const auto messages = (EShMessages)( const auto messages = (EShMessages)(
EShMsgSpvRules | EShMsgSpvRules |
EShMsgVulkanRules EShMsgVulkanRules
); );
std::string preprocessedGLSL; std::string preprocessedGLSL;
DirStackFileIncluder includer; DirStackFileIncluder includer;
includer.pushExternalLocalDirectory(shaderPath.parent_path().string()); includer.pushExternalLocalDirectory(includePath.string());
if (!shader.preprocess(&resources, 100, ENoProfile, false, false, messages, &preprocessedGLSL, includer)) { if (!shader.preprocess(&resources, 100, ENoProfile,
vkcv_log(LogLevel::ERROR, "Shader parsing failed {\n%s\n%s\n} (%s)", false, false,
shader.getInfoLog(), shader.getInfoDebugLog(), shaderPath.string().c_str()); messages, &preprocessedGLSL, includer)) {
return; vkcv_log(LogLevel::ERROR, "Shader preprocessing failed {\n%s\n%s\n}",
shader.getInfoLog(), shader.getInfoDebugLog());
return false;
} }
const char* preprocessedCString = preprocessedGLSL.c_str(); const char* preprocessedCString = preprocessedGLSL.c_str();
shader.setStrings(&preprocessedCString, 1); shader.setStrings(&preprocessedCString, 1);
if (!shader.parse(&resources, 100, false, messages)) { if (!shader.parse(&resources, 100, false, messages)) {
vkcv_log(LogLevel::ERROR, "Shader parsing failed {\n%s\n%s\n} (%s)", vkcv_log(LogLevel::ERROR, "Shader parsing failed {\n%s\n%s\n}",
shader.getInfoLog(), shader.getInfoDebugLog(), shaderPath.string().c_str()); shader.getInfoLog(), shader.getInfoDebugLog());
return; return false;
} }
program.addShader(&shader); program.addShader(&shader);
if (!program.link(messages)) { if (!program.link(messages)) {
vkcv_log(LogLevel::ERROR, "Shader linking failed {\n%s\n%s\n} (%s)", vkcv_log(LogLevel::ERROR, "Shader linking failed {\n%s\n%s\n}",
shader.getInfoLog(), shader.getInfoDebugLog(), shaderPath.string().c_str()); shader.getInfoLog(), shader.getInfoDebugLog());
return; return false;
} }
const glslang::TIntermediate* intermediate = program.getIntermediate(language); const glslang::TIntermediate* intermediate = program.getIntermediate(language);
if (!intermediate) { if (!intermediate) {
vkcv_log(LogLevel::ERROR, "No valid intermediate representation (%s)", shaderPath.string().c_str()); vkcv_log(LogLevel::ERROR, "No valid intermediate representation");
return; return false;
} }
std::vector<uint32_t> spirv; std::vector<uint32_t> spirv;
...@@ -265,8 +266,8 @@ namespace vkcv::shader { ...@@ -265,8 +266,8 @@ namespace vkcv::shader {
const std::filesystem::path tmp_path (std::tmpnam(nullptr)); const std::filesystem::path tmp_path (std::tmpnam(nullptr));
if (!writeSpirvCode(tmp_path, spirv)) { if (!writeSpirvCode(tmp_path, spirv)) {
vkcv_log(LogLevel::ERROR, "Spir-V could not be written to disk (%s)", shaderPath.string().c_str()); vkcv_log(LogLevel::ERROR, "Spir-V could not be written to disk");
return; return false;
} }
if (compiled) { if (compiled) {
...@@ -274,6 +275,24 @@ namespace vkcv::shader { ...@@ -274,6 +275,24 @@ namespace vkcv::shader {
} }
std::filesystem::remove(tmp_path); std::filesystem::remove(tmp_path);
return true;
}
void GLSLCompiler::compile(ShaderStage shaderStage, const std::filesystem::path &shaderPath,
const ShaderCompiledFunction& compiled,
const std::filesystem::path& includePath, bool update) {
const std::vector<char> code = readShaderCode(shaderPath);
bool result;
if (!includePath.empty()) {
result = compileSource(shaderStage, code.data(), compiled, includePath);
} else {
result = compileSource(shaderStage, code.data(), compiled, shaderPath.parent_path());
}
if (!result) {
vkcv_log(LogLevel::ERROR, "Shader compilation failed: (%s)", shaderPath.string().c_str());
}
if (update) { if (update) {
// TODO: Shader hot compilation during runtime // TODO: Shader hot compilation during runtime
......
cmake_minimum_required(VERSION 3.16)
project(vkcv_upscaling)
# setting c++ standard for the project
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(vkcv_upscaling_source ${PROJECT_SOURCE_DIR}/src)
set(vkcv_upscaling_include ${PROJECT_SOURCE_DIR}/include)
set(vkcv_upscaling_sources
${vkcv_upscaling_include}/vkcv/upscaling/FSRUpscaling.hpp
${vkcv_upscaling_source}/vkcv/upscaling/FSRUpscaling.cpp
)
# adding source files to the project
add_library(vkcv_upscaling STATIC ${vkcv_upscaling_sources})
# Setup some path variables to load libraries
set(vkcv_upscaling_lib lib)
set(vkcv_upscaling_lib_path ${PROJECT_SOURCE_DIR}/${vkcv_upscaling_lib})
# Check and load GLSLANG
include(config/FidelityFX_FSR.cmake)
# including headers of dependencies and the VkCV framework
target_include_directories(vkcv_upscaling SYSTEM BEFORE PRIVATE ${vkcv_upscaling_includes} ${vkcv_include} ${vkcv_shader_compiler_include})
# add the own include directory for public headers
target_include_directories(vkcv_upscaling BEFORE PUBLIC ${vkcv_upscaling_include})
if (EXISTS "${vkcv_upscaling_lib_path}/FidelityFX-FSR")
list(APPEND vkcv_upscaling_includes ${vkcv_upscaling_lib}/FidelityFX-FSR/ffx-fsr)
else()
message(WARNING "FidelityFX-FSR is required..! Update the submodules!")
endif ()
#pragma once
namespace vkcv::upscaling {
}
Subproject commit a3b53ee03ce1b23280a6d1dd7dacbb0a3f6ed9c1
#include "vkcv/upscaling/FSRUpscaling.hpp"
#include <stdint.h>
#include <math.h>
#define A_CPU 1
#include <ffx_a.h>
#include <ffx_fsr1.h>
namespace vkcv::upscaling {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment