Skip to content

Commit

Permalink
Remove superfluous semicolon in VK_NV_optical_flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Rageking8 authored Jan 31, 2025
1 parent 645c59c commit 0117a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appendices/VK_NV_optical_flow.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ imageCreateInfo.extent = { width, height, (uint32_t)1};
imageCreateInfo.mipLevels = 1;
imageCreateInfo.arrayLayers = 1;
imageCreateInfo.samples = VK_SAMPLE_COUNT_1_BIT;
imageCreateInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT;;
imageCreateInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT;
imageCreateInfo.tiling = VK_IMAGE_TILING_OPTIMAL;
vkCreateImage(device, &imageCreateInfo, NULL, &input);
Expand Down

0 comments on commit 0117a15

Please sign in to comment.