]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/image/rawbmp.cpp
Get rid of useless temporaries in wxAffineMatrix2D unit test.
[wxWidgets.git] / tests / image / rawbmp.cpp
index be37a83242579ec3f271f91276ec98ad3fbbac02..00f04e4f8349849f655a4a5a2fe75cf71950d5cd 100644 (file)
@@ -18,6 +18,8 @@
     #pragma hdrstop
 #endif
 
+#ifdef wxHAS_RAW_BITMAP
+
 #ifndef WX_PRECOMP
 #endif // WX_PRECOMP
 
@@ -68,7 +70,9 @@ void ImageRawTestCase::RGBImage()
 
         for ( int x = 0; x < WIDTH; x++ )
         {
-            p.Data() = (x + y) % 2 ? 0 : -1;
+            p.Red() =
+            p.Green() =
+            p.Blue() = (x + y) % 2 ? 0 : -1;
             ++p;
         }
 
@@ -82,3 +86,5 @@ void ImageRawTestCase::RGBImage()
     ASSERT_COL_EQUAL( 0, image.GetGreen(0, 1) );
     ASSERT_COL_EQUAL( 0, image.GetGreen(1, 0) );
 }
+
+#endif // wxHAS_RAW_BITMAP