OSDN Git Service

vk/0.170.2: s/baseArraySlice/baseArrayLayer/
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 6 Oct 2015 17:27:50 +0000 (10:27 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 6 Oct 2015 21:08:08 +0000 (14:08 -0700)
include/vulkan/vulkan.h
src/vulkan/anv_image.c
src/vulkan/anv_meta.c
src/vulkan/gen7_state.c
src/vulkan/gen8_state.c

index 3498b46..90df1cb 100644 (file)
@@ -1397,7 +1397,7 @@ typedef struct {
 typedef struct {
     VkImageAspect                               aspect;
     uint32_t                                    mipLevel;
-    uint32_t                                    arraySlice;
+    uint32_t                                    arrayLayer;
 } VkImageSubresource;
 
 typedef struct {
@@ -1496,7 +1496,7 @@ typedef struct {
     VkImageAspectFlags                          aspectMask;
     uint32_t                                    baseMipLevel;
     uint32_t                                    mipLevels;
-    uint32_t                                    baseArraySlice;
+    uint32_t                                    baseArrayLayer;
     uint32_t                                    arraySize;
 } VkImageSubresourceRange;
 
index 8eb5a60..f0620e4 100644 (file)
@@ -411,12 +411,12 @@ anv_validate_CreateImageView(VkDevice _device,
    assert(subresource->arraySize > 0);
    assert(subresource->baseMipLevel < image->levels);
    assert(subresource->baseMipLevel + subresource->mipLevels <= image->levels);
-   assert(subresource->baseArraySlice < image->array_size);
-   assert(subresource->baseArraySlice + subresource->arraySize <= image->array_size);
+   assert(subresource->baseArrayLayer < image->array_size);
+   assert(subresource->baseArrayLayer + subresource->arraySize <= image->array_size);
    assert(pView);
 
    if (view_info->is_cube) {
-      assert(subresource->baseArraySlice % 6 == 0);
+      assert(subresource->baseArrayLayer % 6 == 0);
       assert(subresource->arraySize % 6 == 0);
    }
 
index c214dc3..4abd8d3 100644 (file)
@@ -1018,7 +1018,7 @@ do_buffer_copy(struct anv_cmd_buffer *cmd_buffer,
             .aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
             .baseMipLevel = 0,
             .mipLevels = 1,
-            .baseArraySlice = 0,
+            .baseArrayLayer = 0,
             .arraySize = 1
          },
       },
@@ -1166,7 +1166,7 @@ void anv_CmdCopyImage(
                .aspectMask = 1 << pRegions[r].srcSubresource.aspect,
                .baseMipLevel = pRegions[r].srcSubresource.mipLevel,
                .mipLevels = 1,
-               .baseArraySlice = pRegions[r].srcSubresource.arrayLayer,
+               .baseArrayLayer = pRegions[r].srcSubresource.arrayLayer,
                .arraySize = 1
             },
          },
@@ -1255,7 +1255,7 @@ void anv_CmdBlitImage(
                .aspectMask = 1 << pRegions[r].srcSubresource.aspect,
                .baseMipLevel = pRegions[r].srcSubresource.mipLevel,
                .mipLevels = 1,
-               .baseArraySlice = pRegions[r].srcSubresource.arrayLayer,
+               .baseArrayLayer = pRegions[r].srcSubresource.arrayLayer,
                .arraySize = 1
             },
          },
@@ -1388,7 +1388,7 @@ void anv_CmdCopyBufferToImage(
                .aspectMask = 1 << proxy_aspect,
                .baseMipLevel = 0,
                .mipLevels = 1,
-               .baseArraySlice = 0,
+               .baseArrayLayer = 0,
                .arraySize = 1
             },
          },
@@ -1478,7 +1478,7 @@ void anv_CmdCopyImageToBuffer(
                .aspectMask = 1 << pRegions[r].imageSubresource.aspect,
                .baseMipLevel = pRegions[r].imageSubresource.mipLevel,
                .mipLevels = 1,
-               .baseArraySlice = pRegions[r].imageSubresource.arrayLayer,
+               .baseArrayLayer = pRegions[r].imageSubresource.arrayLayer,
                .arraySize = 1
             },
          },
@@ -1565,7 +1565,7 @@ void anv_CmdClearColorImage(
                   .image = _image,
                   .format = image->format->vk_format,
                   .mipLevel = pRanges[r].baseMipLevel + l,
-                  .baseArraySlice = pRanges[r].baseArraySlice + s,
+                  .baseArraySlice = pRanges[r].baseArrayLayer + s,
                   .arraySize = 1,
                },
                cmd_buffer);
index 1959b8b..d7a4b10 100644 (file)
@@ -322,7 +322,7 @@ gen7_image_view_init(struct anv_image_view *iview,
       .Width = image->extent.width - 1,
       .Depth = depth - 1,
       .SurfacePitch = surface->stride - 1,
-      .MinimumArrayElement = range->baseArraySlice,
+      .MinimumArrayElement = range->baseArrayLayer,
       .NumberofMultisamples = MULTISAMPLECOUNT_1,
       .XOffset = 0,
       .YOffset = 0,
index d2a403b..e836613 100644 (file)
@@ -243,7 +243,7 @@ gen8_image_view_init(struct anv_image_view *iview,
       .Depth = depth - 1,
       .SurfacePitch = surface->stride - 1,
       .RenderTargetViewExtent = rt_view_extent - 1,
-      .MinimumArrayElement = range->baseArraySlice,
+      .MinimumArrayElement = range->baseArrayLayer,
       .NumberofMultisamples = MULTISAMPLECOUNT_1,
       .XOffset = 0,
       .YOffset = 0,