vkd3d: Fix member types in vkd3d_format.

No need to use size_t.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
This commit is contained in:
Hans-Kristian Arntzen 2021-09-02 12:04:50 +02:00
parent 7b67de7d0e
commit bc9bd9c482
1 changed files with 4 additions and 4 deletions

View File

@ -2854,10 +2854,10 @@ struct vkd3d_format
{
DXGI_FORMAT dxgi_format;
VkFormat vk_format;
size_t byte_count;
size_t block_width;
size_t block_height;
size_t block_byte_count;
uint32_t byte_count;
uint32_t block_width;
uint32_t block_height;
uint32_t block_byte_count;
VkImageAspectFlags vk_aspect_mask;
unsigned int plane_count;
enum vkd3d_format_type type;