Can I render an SCNScene at 44fps?

I've got an SCNScene that I'd like to use to drive a DMX stream. DMX has a maximum refresh rate of 44Hz when using the full 512 channels, so I'd like the scene to render in sync with this rate.


I've tried setting my SCNView's preferredFramesPerSecond to 44, however as noted in the documentation the result is that it picks 30fps as this is the next lowest factor of my display's refresh rate. Is there a way to make my view bypass syncing with the display? I'm happy to use an MTKView and SCNRenderer if necessary, but I can't see anything in the docs that would indicate an MTKView would behave any differently?


Thanks 🙂