BeRo1985 / pasvulkan

Vulkan header generator, OOP-style API wrapper, framework and prospective Vulkan-based game engine for Object Pascal
zlib License
185 stars 28 forks source link

Typo in PasVulkan.Framework? #21

Closed johnhutch111 closed 2 years ago

johnhutch111 commented 2 years ago

I think this is an incorrect property reference on line 1524. The code still works OK.

TpvVulkanImageView=class(TpvVulkanObject) private fDevice:TpvVulkanDevice; fImageViewHandle:TVkImageView; fImage:TpvVulkanImage; public ... published ... property Handle:TVkRenderPass read fImageViewHandle;
This should read... property Handle:TVkImageView read fImageViewHandle;

 end;