/third_party/glslang/glslang/Public/ |
H A D | ShaderLang.h | 336 int defaultVersion = 110, // use 100 for ES environment, overridden by #version in shader 658 const TBuiltInResource*, int defaultVersion, EProfile defaultProfile, 662 bool parse(const TBuiltInResource* res, int defaultVersion, EProfile defaultProfile, bool forceDefaultVersionAndProfile, in parse() argument 666 return parse(res, defaultVersion, defaultProfile, forceDefaultVersionAndProfile, forwardCompatible, messages, includer); in parse() 670 bool parse(const TBuiltInResource* builtInResources, int defaultVersion, bool forwardCompatible, EShMessages messages) in parse() argument 672 return parse(builtInResources, defaultVersion, ENoProfile, false, forwardCompatible, messages); in parse() 675 bool parse(const TBuiltInResource* builtInResources, int defaultVersion, bool forwardCompatible, EShMessages messages, in parse() argument 678 return parse(builtInResources, defaultVersion, ENoProfile, false, forwardCompatible, messages, includer); in parse() 684 const TBuiltInResource* builtInResources, int defaultVersion,
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
H A D | process-release.js | 19 function processRelease (argv, gyp, defaultVersion, defaultRelease) { 20 let version = (semver.valid(argv[0]) && argv[0]) || gyp.opts.target || defaultVersion 40 // defaultVersion should come from process.version so ought to be valid semver 41 const isDefaultVersion = version === semver.parse(defaultVersion).version
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | ShaderLang.cpp | 491 bool DeduceVersionProfile(TInfoSink& infoSink, EShLanguage stage, bool versionNotFirst, int defaultVersion, in DeduceVersionProfile() argument 505 version = defaultVersion; in DeduceVersionProfile() 785 int defaultVersion, // use 100 for ES environment, 110 for desktop; this is the GLSL version, not SPIR-V or Vulkan in ProcessDeferred() 787 // set version/profile to defaultVersion/defaultProfile regardless of the #version in ProcessDeferred() 863 (version != defaultVersion || profile != defaultProfile)) { in ProcessDeferred() 865 << defaultVersion << ", " << ProfileName(defaultProfile) in ProcessDeferred() 875 version = defaultVersion; in ProcessDeferred() 883 versionNotFirst, defaultVersion, source, version, profile, spvVersion); in ProcessDeferred() 1247 int defaultVersion, // use 100 for ES environment, 110 for desktop 1260 preamble, optLevel, resources, defaultVersion, 776 ProcessDeferred( TCompiler* compiler, const char* const shaderStrings[], const int numStrings, const int* inputLengths, const char* const stringNames[], const char* customPreamble, const EShOptimizationLevel optLevel, const TBuiltInResource* resources, int defaultVersion, EProfile defaultProfile, bool forceDefaultVersionAndProfile, int overrideVersion, bool forwardCompatible, EShMessages messages, TIntermediate& intermediate, ProcessingContext& processingContext, bool requireNonempty, TShader::Includer& includer, const std::string sourceEntryPointName = �, const TEnvironment* environment = nullptr, bool compileOnly = false) ProcessDeferred() argument 1858 parse(const TBuiltInResource* builtInResources, int defaultVersion, EProfile defaultProfile, bool forceDefaultVersionAndProfile, bool forwardCompatible, EShMessages messages, Includer& includer) parse() argument 1878 preprocess(const TBuiltInResource* builtInResources, int defaultVersion, EProfile defaultProfile, bool forceDefaultVersionAndProfile, bool forwardCompatible, EShMessages message, std::string* output_string, Includer& includer) preprocess() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
H A D | Util.cpp | 152 const int defaultVersion = 100; in compileGLSLtoSPIRV() local 154 bool parseResult = glslangShader->parse(&glslang::DefaultTBuiltInResource, defaultVersion, false, messages); in compileGLSLtoSPIRV()
|
/third_party/curl/lib/vtls/ |
H A D | x509asn1.c | 743 static const char defaultVersion = 0; /* v1. */ in Curl_parseX509() local 772 cert->version.beg = &defaultVersion; in Curl_parseX509() 773 cert->version.end = &defaultVersion + sizeof(defaultVersion); in Curl_parseX509()
|
/third_party/glslang/gtests/ |
H A D | TestFixture.h | 112 : defaultVersion(100), in GlslangTest() 204 defaultVersion, isForwardCompatible, controls); in compile() 660 GetDefaultResources(), defaultVersion, defaultProfile, in preprocess() 729 const int defaultVersion; member in glslangtest::GlslangTest
|
/third_party/glslang/StandAlone/ |
H A D | StandAlone.cpp | 1442 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100; local 1446 if (shader->preprocess(GetResources(), defaultVersion, ENoProfile, false, false, messages, &str, includer)) { 1456 if (! shader->parse(GetResources(), defaultVersion, false, messages, includer))
|