Grzegorz Sikorski

Results 2 comments of Grzegorz Sikorski

You can reproduce this with this snippet: ```python import vulkan as vk for i in range(1000): pipeline_info = vk.VkGraphicsPipelineCreateInfo( pStages=[vk.VkPipelineShaderStageCreateInfo( pName='main' )] ) assert vk.ffi.string(pipeline_info.pStages[0].pName) == b'main' vk.ffi.new('VkPipeline[%d]' % 1)...

[https://github.com/realitix/vulkan/pull/95](url) I only started checking out Vulkan so I don't have a big application on hand, but it seems to work for the demos.