]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/graphics.h
Initial work on virtual file system support for the WebKitGTK+ backend. It now suppor...
[wxWidgets.git] / include / wx / graphics.h
index 276866687050dca0d909c8c1c86b8b22afdb0bf4..0d472b5bca736e82482c96621fc33c2b1ef75410 100644 (file)
@@ -29,8 +29,10 @@ enum wxAntialiasMode
 
 enum wxInterpolationQuality
 {
 
 enum wxInterpolationQuality
 {
+    // default interpolation
+    wxINTERPOLATION_DEFAULT,
     // no interpolation
     // no interpolation
-    wxINTERPOLATION_NONE, // should be 0
+    wxINTERPOLATION_NONE, 
     // fast interpolation, suited for interactivity
     wxINTERPOLATION_FAST,
     // better quality
     // fast interpolation, suited for interactivity
     wxINTERPOLATION_FAST,
     // better quality
@@ -47,6 +49,7 @@ enum wxCompositionMode
     // classic Porter-Duff compositions
     // http://keithp.com/~keithp/porterduff/p253-porter.pdf
 
     // classic Porter-Duff compositions
     // http://keithp.com/~keithp/porterduff/p253-porter.pdf
 
+    wxCOMPOSITION_INVALID = -1, /* indicates invalid/unsupported mode */
     wxCOMPOSITION_CLEAR, /* R = 0 */
     wxCOMPOSITION_SOURCE, /* R = S */
     wxCOMPOSITION_OVER, /* R = S + D*(1 - Sa) */
     wxCOMPOSITION_CLEAR, /* R = 0 */
     wxCOMPOSITION_SOURCE, /* R = S */
     wxCOMPOSITION_OVER, /* R = S + D*(1 - Sa) */
@@ -62,7 +65,7 @@ enum wxCompositionMode
     wxCOMPOSITION_XOR, /* R = S*(1 - Da) + D*(1 - Sa) */
 
     // mathematical compositions
     wxCOMPOSITION_XOR, /* R = S*(1 - Da) + D*(1 - Sa) */
 
     // mathematical compositions
-    wxCOMPOSITION_ADD, /* R = S + D */
+    wxCOMPOSITION_ADD /* R = S + D */
 };
 
 class WXDLLIMPEXP_FWD_CORE wxWindowDC;
 };
 
 class WXDLLIMPEXP_FWD_CORE wxWindowDC;
@@ -508,10 +511,10 @@ public:
     // sets the antialiasing mode, returns true if it supported
     virtual bool SetAntialiasMode(wxAntialiasMode antialias) = 0;
 
     // sets the antialiasing mode, returns true if it supported
     virtual bool SetAntialiasMode(wxAntialiasMode antialias) = 0;
 
-    // returns the current interpolation mode
+    // returns the current interpolation quality
     virtual wxInterpolationQuality GetInterpolationQuality() const { return m_interpolation; }
     
     virtual wxInterpolationQuality GetInterpolationQuality() const { return m_interpolation; }
     
-    // sets the interpolation mode, returns true if it supported
+    // sets the interpolation quality, returns true if it supported
     virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation) = 0;
     
     // returns the current compositing operator
     virtual bool SetInterpolationQuality(wxInterpolationQuality interpolation) = 0;
     
     // returns the current compositing operator