Can I get a PixImage fom an IOutputMod? I tried the code from the question How to download depth image, screenshot and it works fine, but it would be nice if...
3 years ago
let renderScreenshotAndDepth (runtime : IRuntime) (size : V2i) (sg : ISg) = let depth = runtime.CreateTexture(size, TextureFormat.Depth24Stencil8, 1, 1); let...
3 years ago
Aardvark.Rendering is an incremental renderer, so frames are only generated if they are necessary. Is there a way to profile my the performance of my renderi...
4 years ago
How do I create a Texture : ITexture from a PixImage? I actually want to create a Texture from a Stream, this is how far I got: fsharp let s = GetStream( ......