Home
last modified time | relevance | path

Searched refs:numInfo (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
Dvk_format_utils.cpp84 int numInfo, in FindSupportedFormat() argument
87 ASSERT(numInfo > 0); in FindSupportedFormat()
88 const int last = numInfo - 1; in FindSupportedFormat()
100 return FindSupportedFormat(renderer, info, 0, numInfo, hasSupport); in FindSupportedFormat()
141 void Format::initImageFallback(RendererVk *renderer, const ImageFormatInitInfo *info, int numInfo) in initImageFallback() argument
155 int i = FindSupportedFormat(renderer, info, skip, static_cast<uint32_t>(numInfo), testFunction); in initImageFallback()
166 i = FindSupportedFormat(renderer, info, skip, static_cast<uint32_t>(numInfo), testFunction); in initImageFallback()
173 int numInfo, in initBufferFallback() argument
187 if (renderer->getFeatures().compressVertexData.enabled && compressedStartIndex < numInfo) in initBufferFallback()
189 int i = FindSupportedFormat(renderer, info, compressedStartIndex, numInfo, in initBufferFallback()
Dvk_format_utils.h176 void initImageFallback(RendererVk *renderer, const ImageFormatInitInfo *info, int numInfo);
179 int numInfo,