adding default interpolation enum
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Jun 2011 23:05:09 +0000 (23:05 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 9 Jun 2011 23:05:09 +0000 (23:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/graphics.h
interface/wx/graphics.h

index 7263b6776dfde0f30740af02c2f1df9327ca494b..d30fd3b7c10845be7f8dd0c7a6d10df87514d8c8 100644 (file)
@@ -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
index 797238832a9f18efaac6cb55373da707f7e78403..55361daecc7b902f01d7af3223cbbeb6e9850585 100644 (file)
@@ -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 */