Delete deprecated codes related to vkFormat 91/259391/1
authorJoonbum Ko <joonbum.ko@samsung.com>
Mon, 7 Jun 2021 06:20:37 +0000 (15:20 +0900)
committerJoonbum Ko <joonbum.ko@samsung.com>
Mon, 7 Jun 2021 06:20:37 +0000 (15:20 +0900)
Change-Id: Ifcb6957e6931b0ebf4283d4dff5e7d8c99b6ca2c
Signed-off-by: Joonbum Ko <joonbum.ko@samsung.com>
src/wsi/surface.c

index e8d35ae..53402f9 100644 (file)
@@ -204,21 +204,16 @@ tpl_get_surface_formats(VkIcdSurfaceBase  *sfc,
        uint32_t                         surface_format_count = 0;
        VkSurfaceFormatKHR       surface_formats[ARRAY_LENGTH(supported_formats)];
        uint32_t                         i, j;
-       uint8_t                          vk_format_map[VK_FORMAT_RANGE_SIZE];
-       VkFormat                         vk_format;
 
        if (tbm_surface_query_formats(&tbm_formats, &tbm_format_count) != TBM_SURFACE_ERROR_NONE)
                return VK_ERROR_DEVICE_LOST;
 
-       memset(vk_format_map, 0, sizeof(vk_format_map));
        for (i = 0; i < ARRAY_LENGTH(supported_formats); i++) {
-               vk_format = supported_formats[i].surface_format.format;
                for (j = 0; j < tbm_format_count; j++) {
                        /* FIXME Currently, hotfix is applied to avoid duplication of supported VkFormat */
-                       if (tbm_formats[j] == supported_formats[i].tbm_format && vk_format_map[vk_format] == 0) {
+                       if (tbm_formats[j] == supported_formats[i].tbm_format) {
                                /* TODO Check if ICD support the format. */
                                surface_formats[surface_format_count++] = supported_formats[i].surface_format;
-                               vk_format_map[vk_format] = 1;
                                break;
                        }
                }