Fix some warnings
This commit is contained in:
@@ -16,16 +16,15 @@ namespace Nz::GL
|
||||
{
|
||||
public:
|
||||
using EGLContextBase::EGLContextBase;
|
||||
EGLContextX11(const EGLContextX11&) = default;
|
||||
EGLContextX11(EGLContextX11&&) = default;
|
||||
EGLContextX11(const EGLContextX11&) = delete;
|
||||
EGLContextX11(EGLContextX11&&) = delete;
|
||||
~EGLContextX11() = default;
|
||||
|
||||
bool Create(const ContextParams& params, const EGLContextBase* shareContext = nullptr) override;
|
||||
bool Create(const ContextParams& params, WindowHandle window, const EGLContextBase* shareContext = nullptr) override;
|
||||
void Destroy() override;
|
||||
|
||||
EGLContextX11& operator=(const EGLContextX11&) = default;
|
||||
EGLContextX11& operator=(EGLContextX11&&) = default;
|
||||
EGLContextX11& operator=(const EGLContextX11&) = delete;
|
||||
EGLContextX11& operator=(EGLContextX11&&) = delete;
|
||||
|
||||
private:
|
||||
::Display* m_xdisplay = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user