コード例 #1
0
ファイル: Graphics.cpp プロジェクト: cajun-code/gosu
 void updateBaseTransform()
 {
     if (orientation != currentOrientation())
     {
         orientation = currentOrientation();
         queues.front().setBaseTransform(transformForOrientation(orientation));
     }
 }
コード例 #2
0
ファイル: Graphics.cpp プロジェクト: Elland/gosu
 void updateBaseTransform()
 {
     if (orientation != currentOrientation())
     {
         orientation = currentOrientation();
         currentTransforms.front() = transformForOrientation(orientation);
     }
 }