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

1 2 3 4

  /external/vulkan-validation-layers/layers/
vk_layer_extension_utils.h 36 VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
37 VkLayerProperties *pProperties);
vk_layer_extension_utils.cpp 49 VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
50 VkLayerProperties *pProperties) {
59 memcpy(pProperties, layer_properties, copy_size * sizeof(VkLayerProperties));
threading.cpp 179 static const VkLayerProperties layerProps = {
194 EnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties) {
199 EnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount, VkLayerProperties *pProperties) {
425 vkEnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties) {
430 vkEnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount, VkLayerProperties *pProperties) {
unique_objects.cpp 254 static const VkLayerProperties globalLayerProps = {"VK_LAYER_GOOGLE_unique_objects",
267 VKAPI_ATTR VkResult VKAPI_CALL EnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties) {
272 VkLayerProperties *pProperties) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
vk_layer_extension_utils.h 36 VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
37 VkLayerProperties *pProperties);
vk_layer_extension_utils.cpp 49 VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
50 VkLayerProperties *pProperties) {
59 memcpy(pProperties, layer_properties, copy_size * sizeof(VkLayerProperties));
threading.cpp 165 static const VkLayerProperties layerProps = {
361 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties) {
366 vkEnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount, VkLayerProperties *pProperties) {
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
vk_layer_extension_utils.cpp 49 VkResult util_GetLayerProperties(const uint32_t count, const VkLayerProperties *layer_properties, uint32_t *pCount,
50 VkLayerProperties *pProperties) {
59 memcpy(pProperties, layer_properties, copy_size * sizeof(VkLayerProperties));
  /external/deqp/external/vulkancts/framework/vulkan/
vkConcretePlatformInterface.inl 7 virtual VkResult enumerateInstanceLayerProperties (deUint32* pPropertyCount, VkLayerProperties* pProperties) const;
vkVirtualPlatformInterface.inl 7 virtual VkResult enumerateInstanceLayerProperties (deUint32* pPropertyCount, VkLayerProperties* pProperties) const = 0;
vkPlatformDriverImpl.inl 20 VkResult PlatformDriver::enumerateInstanceLayerProperties (deUint32* pPropertyCount, VkLayerProperties* pProperties) const
vkQueryUtil.cpp 172 vector<VkLayerProperties> enumerateInstanceLayerProperties (const PlatformInterface& vkp)
174 vector<VkLayerProperties> properties;
206 vector<VkLayerProperties> enumerateDeviceLayerProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice)
208 vector<VkLayerProperties> properties;
264 bool isCompatible (const VkLayerProperties& layerProperties, const RequiredLayer& required)
289 bool isLayerSupported (const std::vector<VkLayerProperties>& layers, const RequiredLayer& required)
vkQueryUtil.hpp 50 std::vector<VkLayerProperties> enumerateInstanceLayerProperties (const PlatformInterface& vkp);
52 std::vector<VkLayerProperties> enumerateDeviceLayerProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice);
96 bool isCompatible (const VkLayerProperties& layerProperties, const RequiredLayer& required);
104 bool isLayerSupported (const std::vector<VkLayerProperties>& layers, const RequiredLayer& required);
  /frameworks/native/vulkan/libvulkan/
api.h 32 VKAPI_ATTR VkResult EnumerateInstanceLayerProperties(uint32_t* pPropertyCount, VkLayerProperties* pProperties);
34 VKAPI_ATTR VkResult EnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkLayerProperties* pProperties);
layers_extensions.h 51 const VkLayerProperties& GetLayerProperties(const Layer& layer);
layers_extensions.cpp 56 VkLayerProperties properties;
191 VkLayerProperties* properties = static_cast<VkLayerProperties*>(alloca(
192 (num_instance_layers + num_device_layers) * sizeof(VkLayerProperties)));
214 const VkLayerProperties& props = properties[i];
452 const VkLayerProperties& GetLayerProperties(const Layer& layer) {
stubhal.cpp 62 VkLayerProperties* /*properties*/) {
  /external/vulkan-validation-layers/libs/vkjson/
vkjson.h 37 VkLayerProperties properties;
52 std::vector<VkLayerProperties> layers;
vkjson_instance.cc 103 std::vector<VkLayerProperties> layers(count);
  /external/skia/src/gpu/vk/
GrVkExtensions.cpp 58 VkLayerProperties* layers = new VkLayerProperties[layerCount];
147 VkLayerProperties* layers = new VkLayerProperties[layerCount];
  /external/vulkan-validation-layers/
vk-layer-introspect.py 40 class VkLayerProperties(ctypes.Structure):
86 VkResult, ctypes.POINTER(ctypes.c_uint32), ctypes.POINTER(VkLayerProperties))
88 VkResult, VkPhysicalDevice, ctypes.POINTER(ctypes.c_uint32), ctypes.POINTER(VkLayerProperties))
217 tmp_count, (VkLayerProperties * tmp_count.value)())
224 None, tmp_count, (VkLayerProperties * tmp_count.value)())
  /external/vulkan-validation-layers/tests/layers/
test.cpp 137 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties)
  /external/vulkan-validation-layers/tests/
loader_validation_tests.cpp 431 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]);
462 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]);
489 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]);
506 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]);
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/threading/
threading.cpp 165 static const VkLayerProperties layerProps = {
361 VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceLayerProperties(uint32_t *pCount, VkLayerProperties *pProperties) {
366 vkEnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount, VkLayerProperties *pProperties) {
  /external/vulkan-validation-layers/demos/smoke/
Helpers.h 67 inline VkResult enumerate(std::vector<VkLayerProperties> &layer_props)

Completed in 1402 milliseconds

1 2 3 4