1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

Explicitly declare context attributes for GL canvas

This commit is contained in:
kd-11 2016-03-15 20:07:43 +03:00
parent bdecd3c180
commit 15901589a5

View File

@ -4,7 +4,15 @@
GLGSFrame::GLGSFrame() : GSFrame("OpenGL")
{
m_canvas = new wxGLCanvas(this, wxID_ANY, NULL);
const int context_attrs[] =
{
WX_GL_RGBA,
WX_GL_DEPTH_SIZE, 16,
WX_GL_DOUBLEBUFFER,
0
};
m_canvas = new wxGLCanvas(this, wxID_ANY, context_attrs);
m_canvas->SetSize(GetClientSize());
m_canvas->Bind(wxEVT_LEFT_DCLICK, &GSFrame::OnLeftDclick, this);