// // Renderer.h // MiniFB // // Created by Carlos Aragones on 22/04/2020. // Copyright © 2020 Carlos Aragones. All rights reserved. // #import #include "WindowData.h" // Our platform independent renderer class. // Implements the MTKViewDelegate protocol which allows it to accept per-frame // update and drawable resize callbacks. @interface iOSViewDelegate : NSObject { @public SWindowData *m_window_data; } -(nonnull instancetype)initWithMetalKitView:(nonnull MTKView *)view; @end