AGL: small style fixes

This commit is contained in:
Michael Maltese
2017-04-15 20:49:00 -07:00
parent 4770e66811
commit c63925dc21
2 changed files with 17 additions and 17 deletions

View File

@ -15,10 +15,6 @@ struct NSView;
class cInterfaceAGL : public cInterfaceBase
{
private:
NSView* cocoaWin;
NSOpenGLContext* cocoaCtx;
public:
void Swap() override;
bool Create(void* window_handle, bool core) override;
@ -27,4 +23,8 @@ public:
void Shutdown() override;
void Update() override;
void SwapInterval(int interval) override;
private:
NSView* m_view;
NSOpenGLContext* m_context;
};