#include "windowsys/IGraphicsContext.hpp" #include "windowsys/IWindow.hpp" namespace boo { class CGraphicsContextWin32 final : public IGraphicsContext { EGraphicsAPI m_api; EPixelFormat m_pf; IWindow* m_parentWindow; public: IWindowCallback* m_callback; CGraphicsContextWin32(EGraphicsAPI api, IWindow* parentWindow) : m_api(api), m_pf(PF_RGBA8), m_parentWindow(parentWindow) {} ~CGraphicsContextWin32() { } void _setCallback(IWindowCallback* cb) { m_callback = cb; } EGraphicsAPI getAPI() const { return m_api; } EPixelFormat getPixelFormat() const { return m_pf; } void setPixelFormat(EPixelFormat pf) { if (pf > PF_RGBAF32_Z24) return; m_pf = pf; } void initializeContext() { } IGraphicsContext* makeShareContext() const { } void makeCurrent() { } void clearCurrent() { } void swapBuffer() { } }; IGraphicsContext* _CGraphicsContextWin32New(IGraphicsContext::EGraphicsAPI api, IWindow* parentWindow) { } }