xxxxxxxxxx
std::vector<char> buffer; // contains the shader file
glslang::TShader shader(EShLangVertex); // example, use this code for each separate shader file in the shader program
const char* sources[1] = { buffer.data() };
shader.setStrings(sources, 1);
// Use appropriate Vulkan version
glslang::EShTargetClientVersion targetApiVersion = glslang::EShTargetVulkan_1_3;
shader.setEnvClient(glslang::EShClientVulkan, targetApiVersion);
glslang::EShTargetLanguageVersion spirvVersion = glslang::EShTargetSpv_1_3;
shader.setEnvTarget(glslang::EshTargetSpv, spirvVersion);
shader.setEntryPoint("main"); // We can specify a different entry point
// The resource is an entire discussion in and by itself, here just use default.
TBuiltInResource* resources = GetDefaultResources();
// int defaultVersion = 110, // use 100 for ES environment, overridden by #version in shader
const int defaultVersion = 450;
const bool forwardCompatible = false;
const EShMessages messageFlags = (EShMessages)(EShMsgSpvRules | EShMsgVulkanRules);
EProfile defaultProfile = ENoProfile; // NOTE: Only for desktop, before profiles showed up!
// NOTE: Here a custom file I/O library is used, your implementation may be different.
fileio::Directory* shaderdir =
GlslShaderIncluder includer(shaderdir);
std::string preprocessedStr;
if (!shader.preprocess(
resources, defaultVersion, defaultProfile, false, forwardCompatible, messageFlags, &preprocessedStr, includer))
{
log_error("Failed to preprocess shader: {}", shader.getInfoLog());
// FAIL
}
const char* preprocessedSources[1] = { preprocessedStr.c_str() };
shader.setStrings(preprocessedSources, 1);
if (!shader.parse(resources, defaultVersion, defaultProfile, false,
forwardCompatible, messageFlags, includer))
{
vtek_log_error("Failed to parse shader: {}", shader.getInfoLog());
// FAIL
}
glslang::TProgram program;
program.addShader(&shader);
if (!program.link(messageFlags))
{
vtek_log_error("Failed to link shader: {}", program.getInfoLog());
// FAIL
}
// Convert the intermediate generated by glslang to Spir-V
glslang::TIntermediate& intermediateRef = *(program.getIntermediate(lang));
std::vector<uint32_t> spirv;
glslang::SpvOptions options{};
options.validate = true;
// TODO: We can also provide a logger to glslang.
// glslang::spv::SpvBuildLogger logger;
// glslang::GlslangToSpv(intermediateRef, spirv, &logger, &options);
glslang::GlslangToSpv(intermediateRef, spirv, &options);
xxxxxxxxxx
moment().format('YYYY-MM-DD');// FECHA DE ACTUAL: 2022-12-04
moment().format('DD-MM-YYYY');// FECHA DE ACTUAL: 04-12-2022
moment('2022-12-12').add(10, 'days').format('DD-MM-YYYY');//SUMA 10 DIAS: 22-12-2022
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss'); // March 24th 2021, 4:02:53 pm
moment().format('dddd'); // Wednesday
moment().format("MMM Do YY"); // Mar 24th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format(); // 2021-03-24T16:02:53-03:00
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss a'); // April 18th 2023, 7:24:45 pm
moment().format('dddd'); // Tuesday
moment().format("MMM Do YY"); // Apr 18th 23
moment().format('YYYY [escaped] YYYY'); // 2023 escaped 2023
moment().format(); // 2023-04-18T19:24:45+06:00
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss'); // January 14th 2022, 10:29:57 am
moment().format('dddd'); // Friday
moment().format("MMM Do YY"); // Jan 14th 22
moment().format('YYYY [escaped] YYYY'); // 2022 escaped 2022
moment().format(); // 2022-01-14T10:29:57+05:00
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss'); // March 24th 2021, 4:03:03 pm
moment().format('dddd'); // Wednesday
moment().format("MMM Do YY"); // Mar 24th 21
moment().format('YYYY [escaped] YYYY'); // 2021 escaped 2021
moment().format(); // 2021-03-24T16:03:03-03:00
xxxxxxxxxx
moment().format('ddmmyyyyhhmmss'); // May 6th 2021, 2:30:08 pm // 2021-05-06T14:30:08+05:30
xxxxxxxxxx
moment().format('MMMM Do YYYY, h:mm:ss'); // January 14th 2022, 10:30:17 am
moment().format('dddd'); // Friday
moment().format("MMM Do YY"); // Jan 14th 22
moment().format('YYYY [escaped] YYYY'); // 2022 escaped 2022
moment().format(); // 2022-01-14T10:30:17+05:00