void wxBufferedDC::UseBuffer(wxCoord w, wxCoord h)
{
+ wxCHECK_RET( w >= -1 && h >= -1, "Invalid buffer size" );
+
if ( !m_buffer || !m_buffer->IsOk() )
{
if ( w == -1 || h == -1 )
// Ensure the scale matches the device
SetUserScale(1.0, 1.0);
-
+
if ( m_style & wxBUFFER_CLIENT_AREA )
GetDeviceOrigin(&x, &y);