aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Barbour <tony@LunarG.com>2015-06-26 14:32:15 -0600
committerTony Barbour <tony@LunarG.com>2015-06-26 14:32:15 -0600
commit901b06a249af15c5e47ce66c1a568ff56471c832 (patch)
treeb2b2a454f17e2379e17709e56c5adfb046506356
parent633793a798e8123fa998b147d920aae2d1979e6c (diff)
downloadusermoji-901b06a249af15c5e47ce66c1a568ff56471c832.tar.xz
vulkan.h: Bug 14153 - remove maxInlineMemoryUpdateSize
-rw-r--r--demos/vulkaninfo.c1
-rw-r--r--icd/nulldrv/nulldrv.c1
-rw-r--r--include/vulkan.h1
3 files changed, 0 insertions, 3 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c
index fc0f83f7..69fedbf5 100644
--- a/demos/vulkaninfo.c
+++ b/demos/vulkaninfo.c
@@ -623,7 +623,6 @@ static void app_gpu_dump_props(const struct app_gpu *gpu)
printf("\tdeviceId = 0x%04x\n", props->deviceId);
printf("\tdeviceType = %s\n", vk_physical_device_type_string(props->deviceType));
printf("\tdeviceName = %s\n", props->deviceName);
- printf("\tmaxInlineMemoryUpdateSize = " PRINTF_SIZE_T_SPECIFIER "\n", props->maxInlineMemoryUpdateSize);
printf("\tmaxBoundDescriptorSets = %u\n", props->maxBoundDescriptorSets);
printf("\tmaxThreadGroupSize = %u\n", props->maxThreadGroupSize);
printf("\ttimestampFrequency = %lu\n", props->timestampFrequency);
diff --git a/icd/nulldrv/nulldrv.c b/icd/nulldrv/nulldrv.c
index 32e0dcac..c8382a00 100644
--- a/icd/nulldrv/nulldrv.c
+++ b/icd/nulldrv/nulldrv.c
@@ -1364,7 +1364,6 @@ ICD_EXPORT VkResult VKAPI vkGetPhysicalDeviceProperties(
pProperties->deviceId = 0;
pProperties->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER;
strncpy(pProperties->deviceName, "nulldrv", strlen("nulldrv"));
- pProperties->maxInlineMemoryUpdateSize = 0;
pProperties->maxBoundDescriptorSets = 0;
pProperties->maxThreadGroupSize = 0;
pProperties->timestampFrequency = 0;
diff --git a/include/vulkan.h b/include/vulkan.h
index 762d1c18..66561e1a 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1174,7 +1174,6 @@ typedef struct VkPhysicalDeviceProperties_
uint32_t deviceId;
VkPhysicalDeviceType deviceType;
char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME];
- VkDeviceSize maxInlineMemoryUpdateSize;
uint32_t maxBoundDescriptorSets;
uint32_t maxThreadGroupSize;
uint64_t timestampFrequency;