EvergineTeam / Vulkan.NET

This repository contains low-level bindings for Vulkan used in Evergine.
MIT License
199 stars 18 forks source link

Release mode issue #10

Open iantpryor opened 1 year ago

iantpryor commented 1 year ago

It is not possible to currently build/run in release mode due to a few un-initialized variables, but mostly due to the behavior of [Conditional("DEBUG")] on CheckErrors(Vkresult result) which is used in may places. The conditional will remove the function as well as evaluation of all of its parameters, resulting in many calls not being made.

endlesstravel commented 3 months ago

same issue 😭 , I only realized this problem after debugging all afternoon.