]> git.saurik.com Git - wxWidgets.git/commitdiff
moving and slightly extending the comment on CGState
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 1 Sep 2005 06:36:21 +0000 (06:36 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 1 Sep 2005 06:36:21 +0000 (06:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35398 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dccg.cpp

index 0781f8c3047fa532baafbe78a0544910c15c2a63..e8b9ca065ae21bcdbe41e91d0567706d2112de55 100755 (executable)
@@ -132,6 +132,10 @@ static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
 // also coordinate conversions should be moved to native matrix ops
 //-----------------------------------------------------------------------------
 
+// we always stock two context states, one at entry, to be able to preserve the
+// state we were called with, the other one after changing to HI Graphics orientation
+// (this one is used for getting back clippings etc)
+
 wxMacCGPath::wxMacCGPath()
 {
     m_path = CGPathCreateMutable() ;
@@ -175,9 +179,6 @@ CGPathRef wxMacCGPath::GetPath() const
     return m_path ;
 }
 
-// we always stock two context states, one at entry, the other one after 
-// changing to HI Graphics orientation (this one is used for getting back clippings etc)
-
 wxMacCGContext::wxMacCGContext( CGrafPtr port ) 
 {
     m_qdPort = port ;