X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=inline;f=tools%2Fglslcompiler.cpp;h=a1eb1a1fa4d87ddd77c71c47acb0fca563c5b309;hb=cc5483cc709fdf7b6966a3e69dabfcafebaaffa0;hp=4a166ba6d640d0fad01eb8b51c6eff19b2e12a57;hpb=8c4d64c71df5c4dcab1838d81412d7a7244ada58;p=libs%2Fgl.git diff --git a/tools/glslcompiler.cpp b/tools/glslcompiler.cpp index 4a166ba6..a1eb1a1f 100644 --- a/tools/glslcompiler.cpp +++ b/tools/glslcompiler.cpp @@ -9,11 +9,14 @@ class GlslCompiler: public Msp::RegisteredApplication { private: std::string source_fn; + Msp::GL::SL::Features features; + Msp::GL::SL::Compiler::Mode compile_mode; std::map spec_values; bool parse_only; bool combined; Msp::GL::SL::Stage::Type stage; bool dump_ast; + std::string out_filename; public: GlslCompiler(int, char **); @@ -25,6 +28,8 @@ using namespace std; using namespace Msp; GlslCompiler::GlslCompiler(int argc, char **argv): + features(GL::SL::Features::latest()), + compile_mode(GL::SL::Compiler::PROGRAM), parse_only(false), combined(false), stage(GL::SL::Stage::SHARED), @@ -32,6 +37,8 @@ GlslCompiler::GlslCompiler(int argc, char **argv): { string stage_str; vector spec_values_in; + bool as_module = false; + unsigned target_version = 0; GetOpt getopt; getopt.add_option('c', "combined", combined, GetOpt::NO_ARG).set_help("Output combined GLSL"); @@ -39,9 +46,18 @@ GlslCompiler::GlslCompiler(int argc, char **argv): getopt.add_option('p', "parse_only", parse_only, GetOpt::NO_ARG).set_help("Only parse the loaded source (implies -a)"); getopt.add_option('e', "specialize", spec_values_in, GetOpt::REQUIRED_ARG).set_help("Set specialization constant", "NAME:VALUE"); getopt.add_option('s', "stage", stage_str, GetOpt::REQUIRED_ARG).set_help("Output GLSL for STAGE", "STAGE"); + getopt.add_option('m', "module", as_module, GetOpt::NO_ARG).set_help("Compile as unspecialized module"); + getopt.add_option('t', "target-version", target_version, GetOpt::REQUIRED_ARG).set_help("Specify target GLSL version", "VER"); + getopt.add_option('o', "out-file", out_filename, GetOpt::REQUIRED_ARG).set_help("Write output to file instead of stdout", "FILE"); getopt.add_argument("source", source_fn, GetOpt::REQUIRED_ARG).set_help("GLSL file to compile"); getopt(argc, argv); + if(target_version) + features = GL::SL::Features::from_version(GL::Version(target_version/100, target_version%100)); + + if(as_module) + compile_mode = GL::SL::Compiler::MODULE; + if(parse_only) { if(!stage_str.empty()) @@ -58,6 +74,8 @@ GlslCompiler::GlslCompiler(int argc, char **argv): else if(!dump_ast) combined = true; + if(!spec_values_in.empty() && as_module) + throw usage_error("Modules can't be specialized"); for(vector::const_iterator i=spec_values_in.begin(); i!=spec_values_in.end(); ++i) { unsigned colon = i->find(':'); @@ -76,15 +94,19 @@ GlslCompiler::GlslCompiler(int argc, char **argv): int GlslCompiler::main() { - GL::SL::Compiler compiler(GL::SL::Features::all()); + GL::SL::Compiler compiler(features); IO::File file(source_fn); compiler.load_source(file, source_fn); - compiler.specialize(spec_values); + if(compile_mode==GL::SL::Compiler::PROGRAM) + compiler.specialize(spec_values); if(!parse_only) { try { - compiler.compile(GL::SL::Compiler::PROGRAM); + compiler.compile(compile_mode); + string diag = compiler.get_diagnostics(); + if(!diag.empty()) + IO::print("Diagnostic messages from compiler:\n%s\n", diag); } catch(const GL::SL::invalid_shader_source &exc) { @@ -104,10 +126,18 @@ int GlslCompiler::main() IO::print("%s\n", compiler.get_stage_debug(*i)); } + IO::Base *out = &IO::cout; + RefPtr out_file; + if(!out_filename.empty()) + { + out_file = new IO::File(out_filename, IO::M_WRITE); + out = out_file.get(); + } + if(combined) - IO::print("%s\n", compiler.get_combined_glsl()); + IO::print(*out, "%s\n", compiler.get_combined_glsl()); else if(stage!=GL::SL::Stage::SHARED) - IO::print("%s\n", compiler.get_stage_glsl(stage)); + IO::print(*out, "%s\n", compiler.get_stage_glsl(stage)); return 0; }