Lines Matching refs:options

125                    const Options &options,  in GatherGpuInfo()  argument
164 if (options.validate) { in GatherGpuInfo()
200 .enabledLayerCount = (options.validate) ? num_layers : 0, in GatherGpuInfo()
210 void GatherInfo(VulkanInfo* info, const Options& options) { in GatherInfo() argument
240 if (options.validate) { in GatherInfo()
277 .enabledLayerCount = (options.validate) ? num_layers : 0, in GatherInfo()
299 GatherGpuInfo(gpus[i], options, info->gpus.at(i)); in GatherInfo()
347 const Options& options, in PrintLayers() argument
355 if (options.layer_description) in PrintLayers()
357 if (options.layer_extensions && !extensions[i].empty()) { in PrintLayers()
361 PrintExtensions(extensions[i], options, indent + 2); in PrintLayers()
489 void PrintGpuInfo(const GpuInfo& info, const Options& options, size_t indent) { in PrintGpuInfo() argument
554 if (options.unsupported_features) { in PrintGpuInfo()
562 PrintExtensions(info.extensions, options, indent + 2); in PrintGpuInfo()
565 PrintLayers(info.layers, info.layer_extensions, options, indent + 2); in PrintGpuInfo()
568 void PrintInfo(const VulkanInfo& info, const Options& options) { in PrintInfo() argument
574 PrintExtensions(info.extensions, options, indent + 1); in PrintInfo()
577 PrintLayers(info.layers, info.layer_extensions, options, indent + 1); in PrintInfo()
581 PrintGpuInfo(gpu, options, indent + 1); in PrintInfo()
599 Options options = { in main() local
610 options.layer_description = true; in main()
611 options.layer_extensions = true; in main()
612 options.unsupported_features = true; in main()
614 options.layer_description = true; in main()
616 options.layer_extensions = true; in main()
618 options.unsupported_features = true; in main()
620 options.validate = true; in main()
631 GatherInfo(&info, options); in main()
632 PrintInfo(info, options); in main()