Lines Matching defs:properties

173 VkCooperativeMatrixPropertiesKHR convertCooperativeMatrixProperties (const VkCooperativeMatrixPropertiesNV& properties)
177 result.sType = (VkStructureType) properties.sType;
178 result.pNext = (void*) properties.pNext;
179 result.MSize = (uint32_t) properties.MSize;
180 result.NSize = (uint32_t) properties.NSize;
181 result.KSize = (uint32_t) properties.KSize;
182 result.AType = (VkComponentTypeKHR) properties.AType;
183 result.BType = (VkComponentTypeKHR) properties.BType;
184 result.CType = (VkComponentTypeKHR) properties.CType;
185 result.ResultType = (VkComponentTypeKHR) properties.DType;
187 result.scope = (VkScopeKHR) properties.scope;
192 std::vector<VkCooperativeMatrixPropertiesKHR> convertCooperativeMatrixProperties (const std::vector <VkCooperativeMatrixPropertiesNV>& properties)
194 std::vector<VkCooperativeMatrixPropertiesKHR> result(properties.size());
196 for (size_t i = 0; i < properties.size(); ++i)
197 result[i] = convertCooperativeMatrixProperties(properties[i]);
203 void getCooperativeMatrixPropertiesAll (Context& context, std::vector<T>& properties)
213 properties.resize(propertyCount, sample);
215 VK_CHECK(getCooperativeMatrixProperties(context.getInstanceInterface(), context.getPhysicalDevice(), &propertyCount, properties.data()));
219 properties.clear();
225 std::vector<VkCooperativeMatrixPropertiesKHR> properties;
229 getCooperativeMatrixPropertiesAll(context, properties);
237 properties = convertCooperativeMatrixProperties(propertiesNV);
240 return properties;
349 std::vector<VkCooperativeMatrixPropertiesKHR> properties = getCooperativeMatrixPropertiesConverted(context, isKhr(m_data.useType));
354 for (size_t i = 0; i < properties.size(); ++i)
356 const VkCooperativeMatrixPropertiesKHR* p = &properties[i];
997 std::vector<VkCooperativeMatrixPropertiesKHR> properties = getCooperativeMatrixPropertiesConverted(m_context, isKhr(m_data.useType));
1018 for (size_t i = 0; i < properties.size(); ++i)
1020 VkCooperativeMatrixPropertiesKHR *p = &properties[i];
1040 for (deUint32 i = 0; i < properties.size(); ++i)
1042 VkCooperativeMatrixPropertiesKHR *p = &properties[i];
1062 properties.resize(0);