Lines Matching defs:options
38 // Returns the SPIRV-Tools target environment enum for the given dEQP Spirv validator options object.
90 const deUint32 options = SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS;
91 const spv_result_t compileOk = spvTextToBinaryWithOptions(context, spvSource.c_str(), spvSource.size(), options, &binary, &diagnostic);
157 spv_validator_options options = DE_NULL;
167 options = spvValidatorOptionsCreate();
169 if (options == DE_NULL)
177 spvValidatorOptionsSetSkipBlockLayout(options, true);
180 spvValidatorOptionsSetRelaxBlockLayout(options, true);
183 spvValidatorOptionsSetUniformBufferStandardLayout(options, true);
186 spvValidatorOptionsSetScalarBlockLayout(options, true);
192 spvValidatorOptionsSetWorkgroupScalarBlockLayout(options, true);
196 spvValidatorOptionsSetAllowLocalSizeId(options, true);
198 const spv_result_t valid = spvValidateWithOptions(context, options, &cbinary, &diagnostic);
222 spvValidatorOptionsDestroy(options);
231 spvValidatorOptionsDestroy(options);