racket/src/wxcommon/wxGLConfig.cxx
2005-05-27 21:53:51 +00:00

25 lines
362 B
C++

wxGLConfig::wxGLConfig()
: wxObject(FALSE)
{
doubleBuffered = 1;
depth = 1;
}
wxGLConfig::~wxGLConfig()
{
}
wxGLConfig *wxGLConfig::Clone()
{
wxGLConfig *c;
c = new wxGLConfig();
c->doubleBuffered = doubleBuffered;
c->stereo = stereo;
c->stencil = stencil;
c->accum = accum;
c->depth = depth;
c->multisample = multisample;
return c;
}