2 * Copyright © 2015 Intel Corporation
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:
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
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
30 #include "anv_private.h"
32 static const uint8_t anv_halign
[] = {
38 static const uint8_t anv_valign
[] = {
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
,
50 static const struct anv_image_view_info
51 anv_image_view_info_table
[] = {
52 #define INFO(s, ...) { .surface_type = s, __VA_ARGS__ }
53 [VK_IMAGE_VIEW_TYPE_1D
] = INFO(SURFTYPE_1D
),
54 [VK_IMAGE_VIEW_TYPE_2D
] = INFO(SURFTYPE_2D
),
55 [VK_IMAGE_VIEW_TYPE_3D
] = INFO(SURFTYPE_3D
),
56 [VK_IMAGE_VIEW_TYPE_CUBE
] = INFO(SURFTYPE_CUBE
, .is_cube
= 1),
57 [VK_IMAGE_VIEW_TYPE_1D_ARRAY
] = INFO(SURFTYPE_1D
, .is_array
= 1),
58 [VK_IMAGE_VIEW_TYPE_2D_ARRAY
] = INFO(SURFTYPE_2D
, .is_array
= 1),
59 [VK_IMAGE_VIEW_TYPE_CUBE_ARRAY
] = INFO(SURFTYPE_CUBE
, .is_array
= 1, .is_cube
= 1),
63 struct anv_image_view_info
64 anv_image_view_info_for_vk_image_view_type(VkImageViewType type
)
66 return anv_image_view_info_table
[type
];
69 static const struct anv_surf_type_limits
{
73 } anv_surf_type_limits
[] = {
74 [SURFTYPE_1D
] = {16384, 1, 2048},
75 [SURFTYPE_2D
] = {16384, 16384, 2048},
76 [SURFTYPE_3D
] = {2048, 2048, 2048},
77 [SURFTYPE_CUBE
] = {16384, 16384, 340},
78 [SURFTYPE_BUFFER
] = {128, 16384, 64},
79 [SURFTYPE_STRBUF
] = {128, 16384, 64},
82 static const struct anv_tile_info
{
87 * Alignment for RENDER_SURFACE_STATE.SurfaceBaseAddress.
89 * To simplify calculations, the alignments defined in the table are
90 * sometimes larger than required. For example, Skylake requires that X and
91 * Y tiled buffers be aligned to 4K, but Broadwell permits smaller
92 * alignment. We choose 4K to accomodate both chipsets. The alignment of
93 * a linear buffer depends on its element type and usage. Linear depth
94 * buffers have the largest alignment, 64B, so we choose that for all linear
97 uint32_t surface_alignment
;
98 } anv_tile_info_table
[] = {
99 [LINEAR
] = { 1, 1, 64 },
100 [XMAJOR
] = { 512, 8, 4096 },
101 [YMAJOR
] = { 128, 32, 4096 },
102 [WMAJOR
] = { 128, 32, 4096 },
106 anv_image_choose_tile_mode(const struct anv_image_create_info
*anv_info
)
108 if (anv_info
->force_tile_mode
)
109 return anv_info
->tile_mode
;
111 /* The Sandybridge PRM says that the stencil buffer "is supported
112 * only in Tile W memory".
115 switch (anv_info
->vk_info
->tiling
) {
116 case VK_IMAGE_TILING_LINEAR
:
117 assert(anv_info
->vk_info
->format
!= VK_FORMAT_S8_UINT
);
119 case VK_IMAGE_TILING_OPTIMAL
:
120 if (unlikely(anv_info
->vk_info
->format
== VK_FORMAT_S8_UINT
)) {
126 assert(!"bad VKImageTiling");
133 * The \a format argument is required and overrides any format in
134 * struct anv_image_create_info.
137 anv_image_make_surface(const struct anv_image_create_info
*create_info
,
138 const struct anv_format
*format
,
139 uint64_t *inout_image_size
,
140 uint32_t *inout_image_alignment
,
141 struct anv_surface
*out_surface
)
143 /* See RENDER_SURFACE_STATE.SurfaceQPitch */
144 static const uint16_t min_qpitch UNUSED
= 0x4;
145 static const uint16_t max_qpitch UNUSED
= 0x1ffc;
147 const VkExtent3D
*restrict extent
= &create_info
->vk_info
->extent
;
148 const uint32_t levels
= create_info
->vk_info
->mipLevels
;
149 const uint32_t array_size
= create_info
->vk_info
->arraySize
;
150 const uint8_t tile_mode
= anv_image_choose_tile_mode(create_info
);
152 const struct anv_tile_info
*tile_info
=
153 &anv_tile_info_table
[tile_mode
];
155 const uint32_t i
= 4; /* FINISHME: Stop hardcoding subimage alignment */
156 const uint32_t j
= 4; /* FINISHME: Stop hardcoding subimage alignment */
158 uint16_t qpitch
= min_qpitch
;
159 uint32_t mt_width
= 0;
160 uint32_t mt_height
= 0;
162 switch (create_info
->vk_info
->imageType
) {
163 case VK_IMAGE_TYPE_1D
:
164 /* From the Broadwell PRM >> Memory Views >> Common Surface Formats >>
165 * Surface Layout >> 1D Surfaces:
167 * One-dimensional surfaces are identical to 2D surfaces with height of one.
171 case VK_IMAGE_TYPE_2D
: {
172 const uint32_t w0
= align_u32(extent
->width
, i
);
173 const uint32_t h0
= align_u32(extent
->height
, j
);
175 if (levels
== 1 && array_size
== 1) {
180 uint32_t w1
= align_u32(anv_minify(extent
->width
, 1), i
);
181 uint32_t h1
= align_u32(anv_minify(extent
->height
, 1), j
);
182 uint32_t w2
= align_u32(anv_minify(extent
->width
, 2), i
);
184 /* The QPitch equation is found in the Broadwell PRM >> Volume 5: Memory
185 * Views >> Common Surface Formats >> Surface Layout >> 2D Surfaces >>
186 * Surface Arrays >> For All Surface Other Than Separate Stencil Buffer:
188 qpitch
= h0
+ h1
+ 11 * j
;
189 mt_width
= MAX(w0
, w1
+ w2
);
190 mt_height
= array_size
* qpitch
;
194 case VK_IMAGE_TYPE_3D
:
195 /* The layout of 3D surfaces is described by the Broadwell PRM >>
196 * Volume 5: Memory Views >> Common Surface Formats >> Surface Layout >>
199 for (uint32_t l
= 0; l
< levels
; ++l
) {
200 const uint32_t w_l
= align_u32(anv_minify(extent
->width
, l
), i
);
201 const uint32_t h_l
= align_u32(anv_minify(extent
->height
, l
), j
);
202 const uint32_t d_l
= anv_minify(extent
->depth
, l
);
204 const uint32_t max_layers_horiz
= MIN(d_l
, 1u << l
);
205 const uint32_t max_layers_vert
= align_u32(d_l
, 1u << l
) / (1u << l
);
207 mt_width
= MAX(mt_width
, w_l
* max_layers_horiz
);
208 mt_height
+= h_l
* max_layers_vert
;
212 unreachable(!"bad VkImageType");
215 assert(qpitch
>= min_qpitch
);
216 if (qpitch
> max_qpitch
) {
217 anv_loge("image qpitch > 0x%x\n", max_qpitch
);
218 return vk_error(VK_ERROR_OUT_OF_DEVICE_MEMORY
);
221 /* From the Broadwell PRM, RENDER_SURFACE_STATE.SurfaceQpitch:
223 * This field must be set an integer multiple of the Surface Vertical
226 assert(anv_is_aligned(qpitch
, j
));
228 uint32_t stride
= align_u32(mt_width
* format
->cpp
, tile_info
->width
);
229 if (create_info
->stride
> 0)
230 stride
= create_info
->stride
;
232 const uint32_t size
= stride
* align_u32(mt_height
, tile_info
->height
);
233 const uint32_t offset
= align_u32(*inout_image_size
,
234 tile_info
->surface_alignment
);
236 *inout_image_size
= offset
+ size
;
237 *inout_image_alignment
= MAX(*inout_image_alignment
,
238 tile_info
->surface_alignment
);
240 *out_surface
= (struct anv_surface
) {
243 .tile_mode
= tile_mode
,
252 static VkImageUsageFlags
253 anv_image_get_full_usage(const VkImageCreateInfo
*info
)
255 VkImageUsageFlags usage
= info
->usage
;
257 if (usage
& VK_IMAGE_USAGE_TRANSFER_SOURCE_BIT
) {
258 /* Meta will transfer from the image by binding it as a texture. */
259 usage
|= VK_IMAGE_USAGE_SAMPLED_BIT
;
262 if (usage
& VK_IMAGE_USAGE_TRANSFER_DESTINATION_BIT
) {
263 /* Meta will transfer to the image by binding it as a color attachment,
264 * even if the image format is not a color format.
266 usage
|= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT
;
273 anv_image_create(VkDevice _device
,
274 const struct anv_image_create_info
*create_info
,
277 ANV_FROM_HANDLE(anv_device
, device
, _device
);
278 const VkImageCreateInfo
*pCreateInfo
= create_info
->vk_info
;
279 const VkExtent3D
*restrict extent
= &pCreateInfo
->extent
;
280 struct anv_image
*image
= NULL
;
283 assert(pCreateInfo
->sType
== VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO
);
285 anv_assert(pCreateInfo
->mipLevels
> 0);
286 anv_assert(pCreateInfo
->arraySize
> 0);
287 anv_assert(pCreateInfo
->samples
== 1);
288 anv_assert(pCreateInfo
->extent
.width
> 0);
289 anv_assert(pCreateInfo
->extent
.height
> 0);
290 anv_assert(pCreateInfo
->extent
.depth
> 0);
292 /* TODO(chadv): How should we validate inputs? */
293 const uint8_t surf_type
=
294 anv_surf_type_from_image_type
[pCreateInfo
->imageType
];
296 const struct anv_surf_type_limits
*limits
=
297 &anv_surf_type_limits
[surf_type
];
299 /* Errors should be caught by VkImageFormatProperties. */
300 assert(extent
->width
<= limits
->width
);
301 assert(extent
->height
<= limits
->height
);
302 assert(extent
->depth
<= limits
->depth
);
304 image
= anv_device_alloc(device
, sizeof(*image
), 8,
305 VK_SYSTEM_ALLOC_TYPE_API_OBJECT
);
307 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY
);
309 memset(image
, 0, sizeof(*image
));
310 image
->type
= pCreateInfo
->imageType
;
311 image
->extent
= pCreateInfo
->extent
;
312 image
->format
= anv_format_for_vk_format(pCreateInfo
->format
);
313 image
->levels
= pCreateInfo
->mipLevels
;
314 image
->array_size
= pCreateInfo
->arraySize
;
315 image
->usage
= anv_image_get_full_usage(pCreateInfo
);
316 image
->surface_type
= surf_type
;
318 if (image
->usage
& (VK_IMAGE_USAGE_SAMPLED_BIT
|
319 VK_IMAGE_USAGE_STORAGE_BIT
)) {
320 image
->needs_nonrt_surface_state
= true;
323 if (image
->usage
& VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT
) {
324 image
->needs_color_rt_surface_state
= true;
327 if (likely(anv_format_is_color(image
->format
))) {
328 r
= anv_image_make_surface(create_info
, image
->format
,
329 &image
->size
, &image
->alignment
,
330 &image
->color_surface
);
334 if (image
->format
->depth_format
) {
335 r
= anv_image_make_surface(create_info
, image
->format
,
336 &image
->size
, &image
->alignment
,
337 &image
->depth_surface
);
342 if (image
->format
->has_stencil
) {
343 r
= anv_image_make_surface(create_info
, anv_format_s8_uint
,
344 &image
->size
, &image
->alignment
,
345 &image
->stencil_surface
);
351 *pImage
= anv_image_to_handle(image
);
357 anv_device_free(device
, image
);
363 anv_CreateImage(VkDevice device
,
364 const VkImageCreateInfo
*pCreateInfo
,
367 return anv_image_create(device
,
368 &(struct anv_image_create_info
) {
369 .vk_info
= pCreateInfo
,
375 anv_DestroyImage(VkDevice _device
, VkImage _image
)
377 ANV_FROM_HANDLE(anv_device
, device
, _device
);
379 anv_device_free(device
, anv_image_from_handle(_image
));
382 VkResult
anv_GetImageSubresourceLayout(
385 const VkImageSubresource
* pSubresource
,
386 VkSubresourceLayout
* pLayout
)
388 stub_return(VK_UNSUPPORTED
);
392 anv_validate_CreateImageView(VkDevice _device
,
393 const VkImageViewCreateInfo
*pCreateInfo
,
396 ANV_FROM_HANDLE(anv_image
, image
, pCreateInfo
->image
);
397 const VkImageSubresourceRange
*subresource
;
398 const struct anv_image_view_info
*view_info
;
399 const struct anv_format
*view_format_info
;
401 /* Validate structure type before dereferencing it. */
403 assert(pCreateInfo
->sType
== VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO
);
404 subresource
= &pCreateInfo
->subresourceRange
;
406 /* Validate viewType is in range before using it. */
407 assert(pCreateInfo
->viewType
>= VK_IMAGE_VIEW_TYPE_BEGIN_RANGE
);
408 assert(pCreateInfo
->viewType
<= VK_IMAGE_VIEW_TYPE_END_RANGE
);
409 view_info
= &anv_image_view_info_table
[pCreateInfo
->viewType
];
411 /* Validate format is in range before using it. */
412 assert(pCreateInfo
->format
>= VK_FORMAT_BEGIN_RANGE
);
413 assert(pCreateInfo
->format
<= VK_FORMAT_END_RANGE
);
414 view_format_info
= anv_format_for_vk_format(pCreateInfo
->format
);
416 /* Validate channel swizzles. */
417 assert(pCreateInfo
->channels
.r
>= VK_CHANNEL_SWIZZLE_BEGIN_RANGE
);
418 assert(pCreateInfo
->channels
.r
<= VK_CHANNEL_SWIZZLE_END_RANGE
);
419 assert(pCreateInfo
->channels
.g
>= VK_CHANNEL_SWIZZLE_BEGIN_RANGE
);
420 assert(pCreateInfo
->channels
.g
<= VK_CHANNEL_SWIZZLE_END_RANGE
);
421 assert(pCreateInfo
->channels
.b
>= VK_CHANNEL_SWIZZLE_BEGIN_RANGE
);
422 assert(pCreateInfo
->channels
.b
<= VK_CHANNEL_SWIZZLE_END_RANGE
);
423 assert(pCreateInfo
->channels
.a
>= VK_CHANNEL_SWIZZLE_BEGIN_RANGE
);
424 assert(pCreateInfo
->channels
.a
<= VK_CHANNEL_SWIZZLE_END_RANGE
);
426 /* Validate subresource. */
427 assert(subresource
->aspectMask
!= 0);
428 assert(subresource
->mipLevels
> 0);
429 assert(subresource
->arraySize
> 0);
430 assert(subresource
->baseMipLevel
< image
->levels
);
431 assert(subresource
->baseMipLevel
+ subresource
->mipLevels
<= image
->levels
);
432 assert(subresource
->baseArrayLayer
< image
->array_size
);
433 assert(subresource
->baseArrayLayer
+ subresource
->arraySize
<= image
->array_size
);
436 if (view_info
->is_cube
) {
437 assert(subresource
->baseArrayLayer
% 6 == 0);
438 assert(subresource
->arraySize
% 6 == 0);
441 const VkImageAspectFlags ds_flags
= VK_IMAGE_ASPECT_DEPTH_BIT
442 | VK_IMAGE_ASPECT_STENCIL_BIT
;
444 /* Validate format. */
445 if (subresource
->aspectMask
& VK_IMAGE_ASPECT_COLOR_BIT
) {
446 assert(subresource
->aspectMask
== VK_IMAGE_ASPECT_COLOR_BIT
);
447 assert(!image
->format
->depth_format
);
448 assert(!image
->format
->has_stencil
);
449 assert(!view_format_info
->depth_format
);
450 assert(!view_format_info
->has_stencil
);
451 assert(view_format_info
->cpp
== image
->format
->cpp
);
452 } else if (subresource
->aspectMask
& ds_flags
) {
453 assert((subresource
->aspectMask
& ~ds_flags
) == 0);
455 if (subresource
->aspectMask
& VK_IMAGE_ASPECT_STENCIL_BIT
) {
456 assert(image
->format
->depth_format
);
457 assert(view_format_info
->depth_format
);
458 assert(view_format_info
->cpp
== image
->format
->cpp
);
461 if (subresource
->aspectMask
& VK_IMAGE_ASPECT_STENCIL
) {
462 /* FINISHME: Is it legal to have an R8 view of S8? */
463 assert(image
->format
->has_stencil
);
464 assert(view_format_info
->has_stencil
);
467 assert(!"bad VkImageSubresourceRange::aspectFlags");
470 return anv_CreateImageView(_device
, pCreateInfo
, pView
);
474 anv_image_view_init(struct anv_image_view
*iview
,
475 struct anv_device
*device
,
476 const VkImageViewCreateInfo
* pCreateInfo
,
477 struct anv_cmd_buffer
*cmd_buffer
)
479 ANV_FROM_HANDLE(anv_image
, image
, pCreateInfo
->image
);
480 const VkImageSubresourceRange
*range
= &pCreateInfo
->subresourceRange
;
482 assert(range
->arraySize
> 0);
483 assert(range
->baseMipLevel
< image
->levels
);
484 assert(image
->usage
& (VK_IMAGE_USAGE_SAMPLED_BIT
|
485 VK_IMAGE_USAGE_STORAGE_BIT
|
486 VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT
|
487 VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT
));
489 switch (image
->type
) {
491 unreachable("bad VkImageType");
492 case VK_IMAGE_TYPE_1D
:
493 case VK_IMAGE_TYPE_2D
:
494 assert(range
->baseArrayLayer
+ range
->arraySize
- 1 <= image
->array_size
);
496 case VK_IMAGE_TYPE_3D
:
497 assert(range
->baseArrayLayer
+ range
->arraySize
- 1
498 <= anv_minify(image
->extent
.depth
, range
->baseMipLevel
));
502 switch (device
->info
.gen
) {
504 gen7_image_view_init(iview
, device
, pCreateInfo
, cmd_buffer
);
507 gen8_image_view_init(iview
, device
, pCreateInfo
, cmd_buffer
);
510 unreachable("unsupported gen\n");
515 anv_CreateImageView(VkDevice _device
,
516 const VkImageViewCreateInfo
*pCreateInfo
,
519 ANV_FROM_HANDLE(anv_device
, device
, _device
);
520 struct anv_image_view
*view
;
522 view
= anv_device_alloc(device
, sizeof(*view
), 8,
523 VK_SYSTEM_ALLOC_TYPE_API_OBJECT
);
525 return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY
);
527 anv_image_view_init(view
, device
, pCreateInfo
, NULL
);
529 *pView
= anv_image_view_to_handle(view
);
535 anv_image_view_destroy(struct anv_device
*device
,
536 struct anv_image_view
*iview
)
538 if (iview
->image
->needs_color_rt_surface_state
) {
539 anv_state_pool_free(&device
->surface_state_pool
,
540 iview
->color_rt_surface_state
);
543 if (iview
->image
->needs_nonrt_surface_state
) {
544 anv_state_pool_free(&device
->surface_state_pool
,
545 iview
->nonrt_surface_state
);
548 anv_device_free(device
, iview
);
552 anv_DestroyImageView(VkDevice _device
, VkImageView _iview
)
554 ANV_FROM_HANDLE(anv_device
, device
, _device
);
555 ANV_FROM_HANDLE(anv_image_view
, iview
, _iview
);
557 anv_image_view_destroy(device
, iview
);
561 anv_image_get_surface_for_aspect_mask(struct anv_image
*image
, VkImageAspectFlags aspect_mask
)
563 switch (aspect_mask
) {
564 case VK_IMAGE_ASPECT_COLOR_BIT
:
565 /* Dragons will eat you.
567 * Meta attaches all destination surfaces as color render targets. Guess
568 * what surface the Meta Dragons really want.
570 if (image
->format
->depth_format
&& image
->format
->has_stencil
) {
571 anv_finishme("combined depth stencil formats");
572 return &image
->depth_surface
;
573 } else if (image
->format
->depth_format
) {
574 return &image
->depth_surface
;
575 } else if (image
->format
->has_stencil
) {
576 return &image
->stencil_surface
;
578 return &image
->color_surface
;
581 case VK_IMAGE_ASPECT_DEPTH_BIT
:
582 assert(image
->format
->depth_format
);
583 return &image
->depth_surface
;
584 case VK_IMAGE_ASPECT_STENCIL_BIT
:
585 assert(image
->format
->has_stencil
);
586 return &image
->stencil_surface
;
587 case VK_IMAGE_ASPECT_DEPTH_BIT
| VK_IMAGE_ASPECT_STENCIL_BIT
:
588 if (image
->format
->depth_format
&& image
->format
->has_stencil
) {
589 /* FINISHME: The Vulkan spec (git a511ba2) requires support for combined
590 * depth stencil formats. Specifically, it states:
592 * At least one of ename:VK_FORMAT_D24_UNORM_S8_UINT or
593 * ename:VK_FORMAT_D32_SFLOAT_S8_UINT must be supported.
595 anv_finishme("combined depthstencil aspect");
596 return &image
->depth_surface
;
597 } else if (image
->format
->depth_format
) {
598 return &image
->depth_surface
;
599 } else if (image
->format
->has_stencil
) {
600 return &image
->stencil_surface
;
604 unreachable("image does not have aspect");
610 VkImageAspectFlags aspect_mask
= 0;
611 if (format
->depth_format
)
612 aspect_mask
|= VK_IMAGE_ASPECT_DEPTH_BIT
;
613 if (format
->has_stencil
)
614 aspect_mask
|= VK_IMAGE_ASPECT_STENCIL_BIT
;
616 aspect_mask
|= VK_IMAGE_ASPECT_COLOR_BIT
;
618 anv_image_view_init(iview
, device
,
619 &(VkImageViewCreateInfo
) {
620 .sType
= VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO
,
621 .image
= info
->image
,
622 .viewType
= VK_IMAGE_VIEW_TYPE_2D
,
623 .format
= info
->format
,
625 .r
= VK_CHANNEL_SWIZZLE_R
,
626 .g
= VK_CHANNEL_SWIZZLE_G
,
627 .b
= VK_CHANNEL_SWIZZLE_B
,
628 .a
= VK_CHANNEL_SWIZZLE_A
,
630 .subresourceRange
= {
631 .aspectMask
= aspect_mask
,
632 .baseMipLevel
= info
->mipLevel
,
634 .baseArrayLayer
= info
->baseArraySlice
,
635 .arraySize
= info
->arraySize
,