diff options
Diffstat (limited to 'src/intel/vulkan/anv_image.c')
-rw-r--r-- | src/intel/vulkan/anv_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 55402b25571..d21e055f020 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -348,7 +348,7 @@ VkResult anv_BindImageMemory( if (image->aux_surface.isl.size > 0) { /* The offset and size must be a multiple of 4K or else the - * anv_gem_mmap call below will return NULL. + * anv_gem_mmap call below will fail. */ assert((image->offset + image->aux_surface.offset) % 4096 == 0); assert(image->aux_surface.isl.size % 4096 == 0); |