-
Tobias Frisch authored
Signed-off-by:
Tobias Frisch <tfrisch@uni-koblenz.de>
Tobias Frisch authoredSigned-off-by:
Tobias Frisch <tfrisch@uni-koblenz.de>
ShadyCompiler.cpp 679 B
#include "vkcv/shader/ShadyCompiler.hpp"
#include <vkcv/File.hpp>
#include <vkcv/Logger.hpp>
namespace vkcv::shader {
ShadyCompiler::ShadyCompiler() : Compiler() {
// TODO
}
ShadyCompiler::ShadyCompiler(const ShadyCompiler &other) : Compiler(other) {
// TODO
}
ShadyCompiler::~ShadyCompiler() {
// TODO
}
ShadyCompiler &ShadyCompiler::operator=(const ShadyCompiler &other) {
// TODO
return *this;
}
void ShadyCompiler::compile(ShaderStage shaderStage,
const std::filesystem::path &shaderPath,
const ShaderCompiledFunction &compiled,
const std::filesystem::path &includePath,
bool update) {
// TODO
}
}