HomeSort by relevance Sort by last modified time
    Searched refs:layerName (Results 1 - 25 of 38) sorted by null

1 2

  /external/vulkan-validation-layers/layers/
vk_layer_config.h 34 FILE *getLayerLogOutput(const char *_option, const char *layerName);
vk_layer_config.cpp 101 FILE *getLayerLogOutput(const char *_option, const char *layerName) {
110 << layerName << " ERROR: Bad output filename specified: " << _option << ". Writing to STDOUT instead"
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfChannelList.cpp 222 string layerName = i.name();
223 size_t pos = layerName.rfind ('.');
225 if (pos != string::npos && pos != 0 && pos + 1 < layerName.size())
227 layerName.erase (pos);
228 layerNames.insert (layerName);
235 ChannelList::channelsInLayer (const string &layerName,
239 channelsWithPrefix (layerName + '.', first, last);
244 ChannelList::channelsInLayer (const string &layerName,
248 channelsWithPrefix (layerName + '.', first, last);
ImfRgbaFile.h 255 // are expected to be layerName.R, layerName.G, etc.
259 const std::string &layerName,
263 const std::string &layerName,
289 // will read channels layerName.R, layerName.G, etc.
294 void setLayerName (const std::string &layerName);
ImfChannelList.h 217 void channelsInLayer (const std::string &layerName,
221 void channelsInLayer (const std::string &layerName,
ImfTiledRgbaFile.h 328 // expected to be layerName.R, layerName.G, etc.
332 const std::string &layerName,
336 const std::string &layerName,
360 // and readTiles() will read channels layerName.R, layerName.G, etc.
365 void setLayerName (const std::string &layerName);
ImfRgbaFile.cpp 130 prefixFromLayerName (const string &layerName, const Header &header)
132 if (layerName.empty())
135 if (hasMultiView (header) && multiView(header)[0] == layerName)
138 return layerName + ".";
1189 const string &layerName,
1194 _channelNamePrefix (prefixFromLayerName (layerName, _inputFile->header()))
1204 const string &layerName,
1209 _channelNamePrefix (prefixFromLayerName (layerName, _inputFile->header()))
1274 RgbaInputFile::setLayerName (const string &layerName)
1279 _channelNamePrefix = prefixFromLayerName (layerName, _inputFile->header())
    [all...]
ImfTiledRgbaFile.cpp 129 prefixFromLayerName (const string &layerName, const Header &header)
131 if (layerName.empty())
134 if (hasMultiView (header) && multiView(header)[0] == layerName)
137 return layerName + ".";
792 const string &layerName,
797 _channelNamePrefix (prefixFromLayerName (layerName, _inputFile->header()))
805 const string &layerName,
810 _channelNamePrefix (prefixFromLayerName (layerName, _inputFile->header()))
873 TiledRgbaInputFile::setLayerName (const std::string &layerName)
878 _channelNamePrefix = prefixFromLayerName (layerName, _inputFile->header())
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 170 vector<VkExtensionProperties> enumerateInstanceExtensionProperties (const PlatformInterface& vkp, const char* layerName)
175 VK_CHECK(vkp.enumerateInstanceExtensionProperties(layerName, &numExtensions, DE_NULL));
180 VK_CHECK(vkp.enumerateInstanceExtensionProperties(layerName, &numExtensions, &properties[0]));
204 vector<VkExtensionProperties> enumerateDeviceExtensionProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, const char* layerName)
209 VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, DE_NULL));
214 VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, &properties[0]));
247 if (required.name != layerProperties.layerName)
vkQueryUtil.hpp 50 std::vector<VkExtensionProperties> enumerateInstanceExtensionProperties (const PlatformInterface& vkp, const char* layerName);
52 std::vector<VkExtensionProperties> enumerateDeviceExtensionProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, const char* layerName);
vkStructTypes.inl 311 char layerName[VK_MAX_EXTENSION_NAME_SIZE];
    [all...]
  /frameworks/native/vulkan/libvulkan/
layers_extensions.cpp 222 enumerate_instance_extensions(props.layerName, &count, nullptr);
227 props.layerName, path_.c_str(), result);
233 props.layerName, &count, layer.instance_extensions.data());
238 props.layerName, path_.c_str(), result);
253 VK_NULL_HANDLE, props.layerName, &count, nullptr);
258 props.layerName, path_.c_str(), result);
264 VK_NULL_HANDLE, props.layerName, &count,
270 props.layerName, path_.c_str(), result);
278 (layer.is_global) ? "global" : "instance", props.layerName,
290 std::max(size_t{2}, strlen(layer.properties.layerName));
    [all...]
api.cpp 563 if (strcmp(GetLayerProperties(l).layerName, layer_names[i])) {
    [all...]
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_instance.cc 117 if (!EnumerateExtensions(layer.layerName,
129 layer_names.push_back(layer.properties.layerName);
vkjson.cc 322 visitor->Visit("layerName", &properties->layerName) &&
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_O_L_R_.py 38 layerName = glyphOrder[layerGid]
40 layerName = self.getGlyphName(layerGid)
42 layers.append(LayerRecord(layerName, colorID))
  /external/vulkan-validation-layers/demos/
vulkaninfo.c 501 gpu, src_info->layerName, &dst_info->extension_count,
655 app_get_global_layer_extensions(src_info->layerName,
    [all...]
  /external/vulkan-validation-layers/loader/
loader.c 473 if (strcmp(name, item->layerName) == 0)
    [all...]
trampoline.c 146 if (strcmp(props->info.layerName, pLayerName) == 0) {
793 if (strcmp(props->info.layerName, pLayerName) == 0) {
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiFeatureInfo.cpp 550 layerNames.push_back(properties[ndx].layerName);
585 const ScopedLogSection section (log, layer->layerName, string("Layer: ") + layer->layerName);
586 const vector<VkExtensionProperties> properties = enumerateInstanceExtensionProperties(context.getPlatformInterface(), layer->layerName);
617 layerNames.push_back(properties[ndx].layerName);
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Shell.cpp 109 layer_names.insert(layer.layerName);
149 layer_names.insert(layer.layerName);
  /frameworks/native/vulkan/tools/
vkinfo.cpp 154 EnumerateDeviceExtensions(gpu, info.layers[i].layerName,
229 EnumerateInstanceExtensions(info->layers[i].layerName,
351 printf("%s%s %u.%u.%u/%u\n", Indent(indent), layers[i].layerName,
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.h 458 void recordBufferingStats(const char* layerName,
SurfaceFlinger.cpp     [all...]
SurfaceFlinger_hwc1.cpp     [all...]

Completed in 465 milliseconds

1 2