From: Stefan Csomor Date: Thu, 9 Jun 2011 23:05:09 +0000 (+0000) Subject: adding default interpolation enum X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3399af21d10d3f8ce4f39dfb29df5546ab265ef6 adding default interpolation enum git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/graphics.h b/include/wx/graphics.h index 7263b6776d..d30fd3b7c1 100644 --- a/include/wx/graphics.h +++ b/include/wx/graphics.h @@ -29,8 +29,10 @@ enum wxAntialiasMode enum wxInterpolationQuality { + // default interpolation + wxINTERPOLATION_DEFAULT, // no interpolation - wxINTERPOLATION_NONE, // should be 0 + wxINTERPOLATION_NONE, // fast interpolation, suited for interactivity wxINTERPOLATION_FAST, // better quality diff --git a/interface/wx/graphics.h b/interface/wx/graphics.h index 797238832a..55361daecc 100644 --- a/interface/wx/graphics.h +++ b/interface/wx/graphics.h @@ -217,6 +217,8 @@ enum wxAntialiasMode */ enum wxInterpolationQuality { + /** default interpolation, based on type of context, in general medium quality */ + wxINTERPOLATION_DEFAULT, /** no interpolation */ wxINTERPOLATION_NONE, /** fast interpolation, suited for interactivity */