diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-01-10 13:01:29 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2018-01-10 13:26:27 +0100 |
commit | d0ef3d4bb0f381ac08232ad89c6510e05f03a3d4 (patch) | |
tree | d89db274a8e072c6bf982b25fd0568c3baa37877 /src/amd/vulkan/radv_device.c | |
parent | 5db0bf99944ff2d3e83ef27d2aebe8f074d93d59 (diff) |
radv: Remove some typos.
Trivial.
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index baffa41d316..24aa8617809 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -627,8 +627,8 @@ void radv_GetPhysicalDeviceProperties( * there is no set limit, so we just set a pipeline limit. I don't think * any app is going to hit this soon. */ size_t max_descriptor_set_size = ((1ull << 31) - 16 * MAX_DYNAMIC_BUFFERS) / - (32 /* uniform buffer, 32 due to potential space wasted on alignement */ + - 32 /* storage buffer, 32 due to potential space wasted on alignement */ + + (32 /* uniform buffer, 32 due to potential space wasted on alignment */ + + 32 /* storage buffer, 32 due to potential space wasted on alignment */ + 32 /* sampler, largest when combined with image */ + 64 /* sampled image */ + 64 /* storage image */); |