Re: [racket-users] I Need Help Bringing Vulkan to Racket

2019-10-14 Thread Sage Gerard
Thanks for the advice, Jay. I installed dynamic-ffi and could not get the initial example to work, presumably due to my own error: https://github.com/dbenoit17/dynamic-ffi/issues/25 ~slg ‐‐‐ Original Message ‐‐‐ On Wednesday, October 9, 2019 6:36 PM, Jay McCarthy wrote: > Hi Sage, >

Re: [racket-users] I Need Help Bringing Vulkan to Racket

2019-10-09 Thread Hendrik Boom
On Thu, Oct 10, 2019 at 07:36:33AM +0900, Jay McCarthy wrote: > Hi Sage, > > You should model your implementation of Stephan's RacketGL --- > https://github.com/stephanh42/RacketGL --- which parses the spec. > > If you also want to or need to capture parts of the headers, I recommend > David Beno

Re: [racket-users] I Need Help Bringing Vulkan to Racket

2019-10-09 Thread Jay McCarthy
Hi Sage, You should model your implementation of Stephan's RacketGL --- https://github.com/stephanh42/RacketGL --- which parses the spec. If you also want to or need to capture parts of the headers, I recommend David Benoit's dynamic-ffi --- https://github.com/dbenoit17/dynamic-ffi --- for parsin

[racket-users] I Need Help Bringing Vulkan to Racket

2019-10-09 Thread Sage Gerard
I'm resuming work on a very early-stage project that generates FFI bindings for Vulkan in Racket [1]. VkTk is the closest relative project I have found for reference [2]. Last time I was on the project I was focused on generating bindings from the API registry. That has not changed. I considere