#pragma once #ifndef NAZARA_UNITTESTS_SHADER_SHADERUTILS_HPP #define NAZARA_UNITTESTS_SHADER_SHADERUTILS_HPP #include #include void ExpectGLSL(const Nz::ShaderAst::Module& shader, std::string_view expectedOutput); void ExpectNZSL(const Nz::ShaderAst::Module& shader, std::string_view expectedOutput); void ExpectSPIRV(const Nz::ShaderAst::Module& shader, std::string_view expectedOutput, bool outputParameter = false); #endif