vk/0.170.2: Make destructors return void
[mesa.git] / src / vulkan / anv_image.c
1 /*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <assert.h>
25 #include <stdbool.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "anv_private.h"
31
32 static const uint8_t anv_halign[] = {
33 [4] = HALIGN4,
34 [8] = HALIGN8,
35 [16] = HALIGN16,
36 };
37
38 static const uint8_t anv_valign[] = {
39 [4] = VALIGN4,
40 [8] = VALIGN8,
41 [16] = VALIGN16,
42 };
43
44 static const uint8_t anv_surf_type_from_image_type[] = {
45 [VK_IMAGE_TYPE_1D] = SURFTYPE_1D,
46 [VK_IMAGE_TYPE_2D] = SURFTYPE_2D,
47 [VK_IMAGE_TYPE_3D] = SURFTYPE_3D,
48
49 };
50
51 static const struct anv_image_view_info
52 anv_image_view_info_table[] = {
53 #define INFO(s, ...) { .surface_type = s, __VA_ARGS__ }
54 [VK_IMAGE_VIEW_TYPE_1D] = INFO(SURFTYPE_1D),
55 [VK_IMAGE_VIEW_TYPE_2D] = INFO(SURFTYPE_2D),
56 [VK_IMAGE_VIEW_TYPE_3D] = INFO(SURFTYPE_3D),
57 [VK_IMAGE_VIEW_TYPE_CUBE] = INFO(SURFTYPE_CUBE, .is_cube = 1),
58 [VK_IMAGE_VIEW_TYPE_1D_ARRAY] = INFO(SURFTYPE_1D, .is_array = 1),
59 [VK_IMAGE_VIEW_TYPE_2D_ARRAY] = INFO(SURFTYPE_2D, .is_array = 1),
60 [VK_IMAGE_VIEW_TYPE_CUBE_ARRAY] = INFO(SURFTYPE_CUBE, .is_array = 1, .is_cube = 1),
61 #undef INFO
62 };
63
64 struct anv_image_view_info
65 anv_image_view_info_for_vk_image_view_type(VkImageViewType type)
66 {
67 return anv_image_view_info_table[type];
68 }
69
70 static const struct anv_surf_type_limits {
71 int32_t width;
72 int32_t height;
73 int32_t depth;
74 } anv_surf_type_limits[] = {
75 [SURFTYPE_1D] = {16384, 1, 2048},
76 [SURFTYPE_2D] = {16384, 16384, 2048},
77 [SURFTYPE_3D] = {2048, 2048, 2048},
78 [SURFTYPE_CUBE] = {16384, 16384, 340},
79 [SURFTYPE_BUFFER] = {128, 16384, 64},
80 [SURFTYPE_STRBUF] = {128, 16384, 64},
81 };
82
83 static const struct anv_tile_info {
84 uint32_t width;
85 uint32_t height;
86
87 /**
88 * Alignment for RENDER_SURFACE_STATE.SurfaceBaseAddress.
89 *
90 * To simplify calculations, the alignments defined in the table are
91 * sometimes larger than required. For example, Skylake requires that X and
92 * Y tiled buffers be aligned to 4K, but Broadwell permits smaller
93 * alignment. We choose 4K to accomodate both chipsets. The alignment of
94 * a linear buffer depends on its element type and usage. Linear depth
95 * buffers have the largest alignment, 64B, so we choose that for all linear
96 * buffers.
97 */
98 uint32_t surface_alignment;
99 } anv_tile_info_table[] = {
100 [LINEAR] = { 1, 1, 64 },
101 [XMAJOR] = { 512, 8, 4096 },
102 [YMAJOR] = { 128, 32, 4096 },
103 [WMAJOR] = { 128, 32, 4096 },
104 };
105
106 /**
107 * Return -1 on failure.
108 */
109 static int8_t
110 anv_image_choose_tile_mode(const struct anv_image_create_info *anv_info)
111 {
112 if (anv_info->force_tile_mode)
113 return anv_info->tile_mode;
114
115 /* The Sandybridge PRM says that the stencil buffer "is supported
116 * only in Tile W memory".
117 */
118
119 switch (anv_info->vk_info->tiling) {
120 case VK_IMAGE_TILING_LINEAR:
121 if (unlikely(anv_info->vk_info->format == VK_FORMAT_S8_UINT)) {
122 return -1;
123 } else {
124 return LINEAR;
125 }
126 case VK_IMAGE_TILING_OPTIMAL:
127 if (unlikely(anv_info->vk_info->format == VK_FORMAT_S8_UINT)) {
128 return WMAJOR;
129 } else {
130 return YMAJOR;
131 }
132 default:
133 assert(!"bad VKImageTiling");
134 return LINEAR;
135 }
136 }
137
138
139 /**
140 * The \a format argument is required and overrides any format in
141 * struct anv_image_create_info.
142 */
143 static VkResult
144 anv_image_make_surface(const struct anv_image_create_info *create_info,
145 const struct anv_format *format,
146 uint64_t *inout_image_size,
147 uint32_t *inout_image_alignment,
148 struct anv_surface *out_surface)
149 {
150 /* See RENDER_SURFACE_STATE.SurfaceQPitch */
151 static const uint16_t min_qpitch UNUSED = 0x4;
152 static const uint16_t max_qpitch UNUSED = 0x1ffc;
153
154 const VkExtent3D *restrict extent = &create_info->vk_info->extent;
155 const uint32_t levels = create_info->vk_info->mipLevels;
156 const uint32_t array_size = create_info->vk_info->arraySize;
157
158 const int8_t tile_mode = anv_image_choose_tile_mode(create_info);
159 if (tile_mode == -1)
160 return vk_error(VK_ERROR_INVALID_IMAGE);
161
162 const struct anv_tile_info *tile_info =
163 &anv_tile_info_table[tile_mode];
164
165 const uint32_t i = 4; /* FINISHME: Stop hardcoding subimage alignment */
166 const uint32_t j = 4; /* FINISHME: Stop hardcoding subimage alignment */
167
168 uint16_t qpitch = min_qpitch;
169 uint32_t mt_width = 0;
170 uint32_t mt_height = 0;
171
172 switch (create_info->vk_info->imageType) {
173 case VK_IMAGE_TYPE_1D:
174 /* From the Broadwell PRM >> Memory Views >> Common Surface Formats >>
175 * Surface Layout >> 1D Surfaces:
176 *
177 * One-dimensional surfaces are identical to 2D surfaces with height of one.
178 *
179 * So fallthrough...
180 */
181 case VK_IMAGE_TYPE_2D: {
182 const uint32_t w0 = align_u32(extent->width, i);
183 const uint32_t h0 = align_u32(extent->height, j);
184
185 if (levels == 1 && array_size == 1) {
186 qpitch = min_qpitch;
187 mt_width = w0;
188 mt_height = h0;
189 } else {
190 uint32_t w1 = align_u32(anv_minify(extent->width, 1), i);
191 uint32_t h1 = align_u32(anv_minify(extent->height, 1), j);
192 uint32_t w2 = align_u32(anv_minify(extent->width, 2), i);
193
194 /* The QPitch equation is found in the Broadwell PRM >> Volume 5: Memory
195 * Views >> Common Surface Formats >> Surface Layout >> 2D Surfaces >>
196 * Surface Arrays >> For All Surface Other Than Separate Stencil Buffer:
197 */
198 qpitch = h0 + h1 + 11 * j;
199 mt_width = MAX(w0, w1 + w2);
200 mt_height = array_size * qpitch;
201 }
202 break;
203 }
204 case VK_IMAGE_TYPE_3D:
205 /* The layout of 3D surfaces is described by the Broadwell PRM >>
206 * Volume 5: Memory Views >> Common Surface Formats >> Surface Layout >>
207 * 3D Surfaces.
208 */
209 for (uint32_t l = 0; l < levels; ++l) {
210 const uint32_t w_l = align_u32(anv_minify(extent->width, l), i);
211 const uint32_t h_l = align_u32(anv_minify(extent->height, l), j);
212 const uint32_t d_l = anv_minify(extent->depth, l);
213
214 const uint32_t max_layers_horiz = MIN(d_l, 1u << l);
215 const uint32_t max_layers_vert = align_u32(d_l, 1u << l) / (1u << l);
216
217 mt_width = MAX(mt_width, w_l * max_layers_horiz);
218 mt_height += h_l * max_layers_vert;
219 }
220 break;
221 default:
222 unreachable(!"bad VkImageType");
223 }
224
225 assert(qpitch >= min_qpitch);
226 if (qpitch > max_qpitch) {
227 anv_loge("image qpitch > 0x%x\n", max_qpitch);
228 return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY);
229 }
230
231 /* From the Broadwell PRM, RENDER_SURFACE_STATE.SurfaceQpitch:
232 *
233 * This field must be set an integer multiple of the Surface Vertical
234 * Alignment.
235 */
236 assert(anv_is_aligned(qpitch, j));
237
238 uint32_t stride = align_u32(mt_width * format->cpp, tile_info->width);
239 if (create_info->stride > 0)
240 stride = create_info->stride;
241
242 const uint32_t size = stride * align_u32(mt_height, tile_info->height);
243 const uint32_t offset = align_u32(*inout_image_size,
244 tile_info->surface_alignment);
245
246 *inout_image_size = offset + size;
247 *inout_image_alignment = MAX(*inout_image_alignment,
248 tile_info->surface_alignment);
249
250 *out_surface = (struct anv_surface) {
251 .offset = offset,
252 .stride = stride,
253 .tile_mode = tile_mode,
254 .qpitch = qpitch,
255 .h_align = i,
256 .v_align = j,
257 };
258
259 return VK_SUCCESS;
260 }
261
262 VkResult
263 anv_image_create(VkDevice _device,
264 const struct anv_image_create_info *create_info,
265 VkImage *pImage)
266 {
267 ANV_FROM_HANDLE(anv_device, device, _device);
268 const VkImageCreateInfo *pCreateInfo = create_info->vk_info;
269 const VkExtent3D *restrict extent = &pCreateInfo->extent;
270 struct anv_image *image = NULL;
271 VkResult r;
272
273 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO);
274
275 anv_assert(pCreateInfo->mipLevels > 0);
276 anv_assert(pCreateInfo->arraySize > 0);
277 anv_assert(pCreateInfo->samples == 1);
278 anv_assert(pCreateInfo->extent.width > 0);
279 anv_assert(pCreateInfo->extent.height > 0);
280 anv_assert(pCreateInfo->extent.depth > 0);
281
282 /* TODO(chadv): How should we validate inputs? */
283 const uint8_t surf_type =
284 anv_surf_type_from_image_type[pCreateInfo->imageType];
285
286 const struct anv_surf_type_limits *limits =
287 &anv_surf_type_limits[surf_type];
288
289 if (extent->width > limits->width ||
290 extent->height > limits->height ||
291 extent->depth > limits->depth) {
292 /* TODO(chadv): What is the correct error? */
293 return vk_errorf(VK_ERROR_INVALID_MEMORY_SIZE, "image extent is too large");
294 }
295
296 image = anv_device_alloc(device, sizeof(*image), 8,
297 VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
298 if (!image)
299 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
300
301 memset(image, 0, sizeof(*image));
302 image->type = pCreateInfo->imageType;
303 image->extent = pCreateInfo->extent;
304 image->format = anv_format_for_vk_format(pCreateInfo->format);
305 image->levels = pCreateInfo->mipLevels;
306 image->array_size = pCreateInfo->arraySize;
307 image->surf_type = surf_type;
308
309 if (likely(anv_format_is_color(image->format))) {
310 r = anv_image_make_surface(create_info, image->format,
311 &image->size, &image->alignment,
312 &image->color_surface);
313 if (r != VK_SUCCESS)
314 goto fail;
315 } else {
316 if (image->format->depth_format) {
317 r = anv_image_make_surface(create_info, image->format,
318 &image->size, &image->alignment,
319 &image->depth_surface);
320 if (r != VK_SUCCESS)
321 goto fail;
322 }
323
324 if (image->format->has_stencil) {
325 r = anv_image_make_surface(create_info, anv_format_s8_uint,
326 &image->size, &image->alignment,
327 &image->stencil_surface);
328 if (r != VK_SUCCESS)
329 goto fail;
330 }
331 }
332
333 *pImage = anv_image_to_handle(image);
334
335 return VK_SUCCESS;
336
337 fail:
338 if (image)
339 anv_device_free(device, image);
340
341 return r;
342 }
343
344 VkResult
345 anv_CreateImage(VkDevice device,
346 const VkImageCreateInfo *pCreateInfo,
347 VkImage *pImage)
348 {
349 return anv_image_create(device,
350 &(struct anv_image_create_info) {
351 .vk_info = pCreateInfo,
352 },
353 pImage);
354 }
355
356 void
357 anv_DestroyImage(VkDevice _device, VkImage _image)
358 {
359 ANV_FROM_HANDLE(anv_device, device, _device);
360
361 anv_device_free(device, anv_image_from_handle(_image));
362 }
363
364 VkResult anv_GetImageSubresourceLayout(
365 VkDevice device,
366 VkImage image,
367 const VkImageSubresource* pSubresource,
368 VkSubresourceLayout* pLayout)
369 {
370 stub_return(VK_UNSUPPORTED);
371 }
372
373 VkResult
374 anv_validate_CreateImageView(VkDevice _device,
375 const VkImageViewCreateInfo *pCreateInfo,
376 VkImageView *pView)
377 {
378 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
379 const VkImageSubresourceRange *subresource;
380 const struct anv_image_view_info *view_info;
381 const struct anv_format *view_format_info;
382
383 /* Validate structure type before dereferencing it. */
384 assert(pCreateInfo);
385 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO);
386 subresource = &pCreateInfo->subresourceRange;
387
388 /* Validate viewType is in range before using it. */
389 assert(pCreateInfo->viewType >= VK_IMAGE_VIEW_TYPE_BEGIN_RANGE);
390 assert(pCreateInfo->viewType <= VK_IMAGE_VIEW_TYPE_END_RANGE);
391 view_info = &anv_image_view_info_table[pCreateInfo->viewType];
392
393 /* Validate format is in range before using it. */
394 assert(pCreateInfo->format >= VK_FORMAT_BEGIN_RANGE);
395 assert(pCreateInfo->format <= VK_FORMAT_END_RANGE);
396 view_format_info = anv_format_for_vk_format(pCreateInfo->format);
397
398 /* Validate channel swizzles. */
399 assert(pCreateInfo->channels.r >= VK_CHANNEL_SWIZZLE_BEGIN_RANGE);
400 assert(pCreateInfo->channels.r <= VK_CHANNEL_SWIZZLE_END_RANGE);
401 assert(pCreateInfo->channels.g >= VK_CHANNEL_SWIZZLE_BEGIN_RANGE);
402 assert(pCreateInfo->channels.g <= VK_CHANNEL_SWIZZLE_END_RANGE);
403 assert(pCreateInfo->channels.b >= VK_CHANNEL_SWIZZLE_BEGIN_RANGE);
404 assert(pCreateInfo->channels.b <= VK_CHANNEL_SWIZZLE_END_RANGE);
405 assert(pCreateInfo->channels.a >= VK_CHANNEL_SWIZZLE_BEGIN_RANGE);
406 assert(pCreateInfo->channels.a <= VK_CHANNEL_SWIZZLE_END_RANGE);
407
408 /* Validate subresource. */
409 assert(subresource->aspectMask != 0);
410 assert(subresource->mipLevels > 0);
411 assert(subresource->arraySize > 0);
412 assert(subresource->baseMipLevel < image->levels);
413 assert(subresource->baseMipLevel + subresource->mipLevels <= image->levels);
414 assert(subresource->baseArraySlice < image->array_size);
415 assert(subresource->baseArraySlice + subresource->arraySize <= image->array_size);
416 assert(pView);
417
418 if (view_info->is_cube) {
419 assert(subresource->baseArraySlice % 6 == 0);
420 assert(subresource->arraySize % 6 == 0);
421 }
422
423 const VkImageAspectFlags ds_flags = VK_IMAGE_ASPECT_DEPTH_BIT
424 | VK_IMAGE_ASPECT_STENCIL_BIT;
425
426 /* Validate format. */
427 if (subresource->aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) {
428 assert(subresource->aspectMask == VK_IMAGE_ASPECT_COLOR_BIT);
429 assert(!image->format->depth_format);
430 assert(!image->format->has_stencil);
431 assert(!view_format_info->depth_format);
432 assert(!view_format_info->has_stencil);
433 assert(view_format_info->cpp == image->format->cpp);
434 } else if (subresource->aspectMask & ds_flags) {
435 assert((subresource->aspectMask & ~ds_flags) == 0);
436
437 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) {
438 assert(image->format->depth_format);
439 assert(view_format_info->depth_format);
440 assert(view_format_info->cpp == image->format->cpp);
441 }
442
443 if (subresource->aspectMask & VK_IMAGE_ASPECT_STENCIL) {
444 /* FINISHME: Is it legal to have an R8 view of S8? */
445 assert(image->format->has_stencil);
446 assert(view_format_info->has_stencil);
447 }
448 } else {
449 assert(!"bad VkImageSubresourceRange::aspectFlags");
450 }
451
452 return anv_CreateImageView(_device, pCreateInfo, pView);
453 }
454
455 void
456 anv_image_view_init(struct anv_image_view *iview,
457 struct anv_device *device,
458 const VkImageViewCreateInfo* pCreateInfo,
459 struct anv_cmd_buffer *cmd_buffer)
460 {
461 switch (device->info.gen) {
462 case 7:
463 gen7_image_view_init(iview, device, pCreateInfo, cmd_buffer);
464 break;
465 case 8:
466 gen8_image_view_init(iview, device, pCreateInfo, cmd_buffer);
467 break;
468 default:
469 unreachable("unsupported gen\n");
470 }
471 }
472
473 VkResult
474 anv_CreateImageView(VkDevice _device,
475 const VkImageViewCreateInfo *pCreateInfo,
476 VkImageView *pView)
477 {
478 ANV_FROM_HANDLE(anv_device, device, _device);
479 struct anv_image_view *view;
480
481 view = anv_device_alloc(device, sizeof(*view), 8,
482 VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
483 if (view == NULL)
484 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
485
486 anv_image_view_init(view, device, pCreateInfo, NULL);
487
488 *pView = anv_image_view_to_handle(view);
489
490 return VK_SUCCESS;
491 }
492
493 static void
494 anv_image_view_fini(struct anv_device *device,
495 struct anv_image_view *iview)
496 {
497 anv_state_pool_free(&device->surface_state_pool, iview->surface_state);
498 }
499
500 void
501 anv_DestroyImageView(VkDevice _device, VkImageView _iview)
502 {
503 ANV_FROM_HANDLE(anv_device, device, _device);
504 ANV_FROM_HANDLE(anv_image_view, iview, _iview);
505
506 anv_image_view_fini(device, iview);
507 anv_device_free(device, iview);
508 }
509
510 static void
511 anv_depth_stencil_view_init(struct anv_attachment_view *aview,
512 const VkAttachmentViewCreateInfo *pCreateInfo)
513 {
514 ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
515
516 aview->attachment_type = ANV_ATTACHMENT_VIEW_TYPE_DEPTH_STENCIL;
517
518 /* XXX: We don't handle any of these */
519 anv_assert(pCreateInfo->mipLevel == 0);
520 anv_assert(pCreateInfo->baseArraySlice == 0);
521 anv_assert(pCreateInfo->arraySize == 1);
522
523 aview->image_view.image = image;
524 aview->image_view.format = anv_format_for_vk_format(pCreateInfo->format);
525
526 assert(anv_format_is_depth_or_stencil(image->format));
527 assert(anv_format_is_depth_or_stencil(aview->image_view.format));
528 }
529
530 struct anv_surface *
531 anv_image_get_surface_for_aspect_mask(struct anv_image *image, VkImageAspectFlags aspect_mask)
532 {
533 switch (aspect_mask) {
534 case VK_IMAGE_ASPECT_COLOR_BIT:
535 assert(anv_format_is_color(image->format));
536 return &image->color_surface;
537 case VK_IMAGE_ASPECT_DEPTH_BIT:
538 assert(image->format->depth_format);
539 return &image->depth_surface;
540 case VK_IMAGE_ASPECT_STENCIL_BIT:
541 assert(image->format->has_stencil);
542 anv_finishme("stencil image views");
543 return &image->stencil_surface;
544 case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT:
545 /* FINISHME: The Vulkan spec (git a511ba2) requires support for combined
546 * depth stencil formats. Specifically, it states:
547 *
548 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
549 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
550 */
551 anv_finishme("combined depthstencil aspect");
552 assert(image->format->depth_format);
553 return &image->depth_surface;
554 default:
555 unreachable("image does not have aspect");
556 return NULL;
557 }
558 }
559
560 /** The attachment may be a color view into a non-color image. */
561 struct anv_surface *
562 anv_image_get_surface_for_color_attachment(struct anv_image *image)
563 {
564 if (anv_format_is_color(image->format)) {
565 return &image->color_surface;
566 } else if (image->format->depth_format) {
567 return &image->depth_surface;
568 } else if (image->format->has_stencil) {
569 return &image->stencil_surface;
570 } else {
571 unreachable("image has bad format");
572 return NULL;
573 }
574 }
575
576 void
577 anv_color_attachment_view_init(struct anv_attachment_view *aview,
578 struct anv_device *device,
579 const VkAttachmentViewCreateInfo* pCreateInfo,
580 struct anv_cmd_buffer *cmd_buffer)
581 {
582 switch (device->info.gen) {
583 case 7:
584 gen7_color_attachment_view_init(aview, device, pCreateInfo, cmd_buffer);
585 break;
586 case 8:
587 gen8_color_attachment_view_init(aview, device, pCreateInfo, cmd_buffer);
588 break;
589 default:
590 unreachable("unsupported gen\n");
591 }
592 }
593
594 VkResult
595 anv_CreateAttachmentView(VkDevice _device,
596 const VkAttachmentViewCreateInfo *pCreateInfo,
597 VkAttachmentView *pView)
598 {
599 ANV_FROM_HANDLE(anv_device, device, _device);
600 struct anv_attachment_view *aview;
601
602 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_ATTACHMENT_VIEW_CREATE_INFO);
603
604 aview = anv_device_alloc(device, sizeof(*aview), 8,
605 VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
606 if (aview == NULL)
607 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
608
609 const struct anv_format *format =
610 anv_format_for_vk_format(pCreateInfo->format);
611
612 if (anv_format_is_depth_or_stencil(format)) {
613 anv_depth_stencil_view_init(aview, pCreateInfo);
614 } else {
615 anv_color_attachment_view_init(aview, device, pCreateInfo, NULL);
616 }
617
618 *pView = anv_attachment_view_to_handle(aview);
619
620 return VK_SUCCESS;
621 }
622
623 void
624 anv_DestroyAttachmentView(VkDevice _device, VkAttachmentView _aview)
625 {
626 ANV_FROM_HANDLE(anv_device, device, _device);
627 ANV_FROM_HANDLE(anv_attachment_view, aview, _aview);
628
629 if (aview->attachment_type == ANV_ATTACHMENT_VIEW_TYPE_COLOR) {
630 anv_image_view_fini(device, &aview->image_view);
631 }
632
633 anv_device_free(device, aview);
634 }