HomeSort by relevance Sort by last modified time
    Searched refs:instInfo (Results 1 - 3 of 3) sorted by null

  /frameworks/rs/rsov/driver/
rsovContext.cpp 41 VkInstanceCreateInfo instInfo = {
49 res = vkCreateInstance(&instInfo, nullptr, &mInstance);
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDInst.h 74 /// The order in which operands from the InstInfo's operand information appear
102 /// @arg instInfo - The instruction information produced by the table
107 const llvm::EDInstInfo *instInfo);
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp 108 VkInstanceCreateInfo instInfo = {};
115 instInfo.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
116 instInfo.pNext = NULL;
117 instInfo.pApplicationInfo = &app_info;
118 instInfo.enabledLayerCount = instance_layer_names.size();
119 instInfo.ppEnabledLayerNames = instance_layer_names.data();
120 instInfo.enabledExtensionCount = instance_extension_names.size();
121 instInfo.ppEnabledExtensionNames = instance_extension_names.data();
122 err = vkCreateInstance(&instInfo, NULL, &this->inst);
    [all...]

Completed in 207 milliseconds