Skip to content

Commit 459e391

Browse files
authored
Remove superfluous semicolon in VK_NV_optical_flow (#2489)
1 parent 0bfe685 commit 459e391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appendices/VK_NV_optical_flow.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ imageCreateInfo.extent = { width, height, (uint32_t)1};
7575
imageCreateInfo.mipLevels = 1;
7676
imageCreateInfo.arrayLayers = 1;
7777
imageCreateInfo.samples = VK_SAMPLE_COUNT_1_BIT;
78-
imageCreateInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT;;
78+
imageCreateInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT;
7979
imageCreateInfo.tiling = VK_IMAGE_TILING_OPTIMAL;
8080
8181
vkCreateImage(device, &imageCreateInfo, NULL, &input);

0 commit comments

Comments
 (0)