bridge: fix more possible command skips

gpu: show window after os launch
This commit is contained in:
DH 2024-09-05 22:12:59 +03:00
parent d3b9ff4292
commit 5830d66c4b
4 changed files with 20 additions and 17 deletions

View file

@ -1790,13 +1790,13 @@ static void printSpirv(const std::vector<uint32_t> &bin) {
return;
}
spirv_cross::CompilerGLSL glsl(bin);
spirv_cross::CompilerGLSL::Options options;
options.version = 460;
options.es = false;
options.vulkan_semantics = true;
glsl.set_common_options(options);
std::printf("%s\n", glsl.compile().c_str());
// spirv_cross::CompilerGLSL glsl(bin);
// spirv_cross::CompilerGLSL::Options options;
// options.version = 460;
// options.es = false;
// options.vulkan_semantics = true;
// glsl.set_common_options(options);
// std::printf("%s\n", glsl.compile().c_str());
#endif
}