boo/src/graphicsys/CGraphicsContextWayland.cpp

64 lines
1.1 KiB
C++
Raw Normal View History

#include "graphicsys/IGFXContext.hpp"
2015-05-06 00:50:57 +00:00
#include "windowsys/IWindow.hpp"
namespace boo
{
class CGraphicsContextWayland final : public IGFXContext
2015-05-06 00:50:57 +00:00
{
EGraphicsAPI m_api;
EPixelFormat m_pf;
IWindow* m_parentWindow;
public:
IWindowCallback* m_callback;
CGraphicsContextWayland(EGraphicsAPI api, IWindow* parentWindow)
: m_api(api),
m_pf(PF_RGBA8),
m_parentWindow(parentWindow)
{}
~CGraphicsContextWayland()
{
}
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()
{
}
};
IGFXContext* _CGraphicsContextWaylandNew(IGFXContext::EGraphicsAPI api,
IWindow* parentWindow)
2015-05-06 00:50:57 +00:00
{
2015-05-10 07:02:18 +00:00
return new CGraphicsContextWayland(api, parentWindow);
2015-05-06 00:50:57 +00:00
}
}