Koen Klaren
Koen Klaren
This is indeed not the most elegant fix, but still miles ahead of just commenting out the entire faulty block :wink: I am currently using this fix, so thanks!
We've been having the exact same issue. I can think of two solutions: - Remove `position: fixed` from the overlay element, but somehow keep its positioning. - Invert the scaling...
> It's hard to say whether this is a problem in Vulkano or your graphics driver. Are you able to test it with another driver, and a non-Vulkano program that...
I have cloned [this repository](https://github.com/SaschaWillems/Vulkan), containing many Vulkan examples. I've tried a bunch of these examples, and none of them seem to leak any memory. In particular I tried the...
When I ran the example on my Ubuntu machine (a laptop without dedicated graphics card), I also didn't perceive any memory leaks. So that would lead me to be inclined...
@kripod I think it's fair to assume that the previously mentioned PR has been released by now. Unfortunately this issue has not been fixed by that change. Perhaps you could...
This comment is relevant for this issue as well: > This issue has now been fixed on TypeScript's end (https://github.com/microsoft/TypeScript/issues/44596), so perhaps this issue can be fixed in a nicer...
You might have some luck with Typescript's conditional types, but I'm not entirely sure if that'll work. You could also try adding a value for the generic parameter (i.e. props...
@rafgraph I've forked your codesandbox and I think I've figured it out: https://codesandbox.io/s/polymorphic-types-required-props-for-as-forked-fmc7k?file=/src/App.tsx. I added the `OnlyIfStyleable` utility type that only allows elements that accept a style prop by conditionally...
@rafgraph Did you manage to get my solution working in your project?