qtmobility/tests/auto/qpaintervideosurface/tst_qpaintervideosurface.cpp
changeset 14 6fbed849b4f4
parent 11 06b8e2af4411
--- a/qtmobility/tests/auto/qpaintervideosurface/tst_qpaintervideosurface.cpp	Fri Jun 11 14:26:25 2010 +0300
+++ b/qtmobility/tests/auto/qpaintervideosurface/tst_qpaintervideosurface.cpp	Wed Jun 23 19:08:38 2010 +0300
@@ -44,7 +44,7 @@
 #include <QtTest/QtTest>
 
 #include <QtGui/qapplication.h>
-#include <QtMultimedia/qvideosurfaceformat.h>
+#include <qvideosurfaceformat.h>
 
 #if !defined(QT_NO_OPENGL) && !defined(QT_OPENGL_ES_1_CL) && !defined(QT_OPENGL_ES_1)
 #include <QtOpenGL/qgl.h>
@@ -697,6 +697,8 @@
     QTest::addColumn<bool>("supportedFormat");
 
     QList<QPair<QPainterVideoSurface::ShaderType, QByteArray> > types;
+
+
 #ifndef QT_OPENGL_ES
     types << qMakePair(QPainterVideoSurface::FragmentProgramShader, QByteArray("ARBfp: "));
 #endif
@@ -753,6 +755,7 @@
                 << QSize(-1024, -768)
                 << true
                 << false;
+#ifndef Q_WS_MAC
         QTest::newRow((type.second + "YUV420P 640x480").constData())
                 << type.first
                 << QAbstractVideoBuffer::NoHandle
@@ -767,6 +770,7 @@
                 << QSize(640, -480)
                 << true
                 << false;
+#endif
         QTest::newRow((type.second + "Y8 640x480").constData())
                 << type.first
                 << QAbstractVideoBuffer::NoHandle
@@ -788,6 +792,7 @@
                 << QSize(-640, 480)
                 << true
                 << false;
+#ifndef Q_WS_MAC
         QTest::newRow((type.second + "Texture: rgb565 32x32").constData())
                 << type.first
                 << QAbstractVideoBuffer::GLTextureHandle
@@ -802,6 +807,7 @@
                 << QSize(0, 0)
                 << false
                 << false;
+#endif
         QTest::newRow((type.second + "Texture argb32 256x256").constData())
                 << type.first
                 << QAbstractVideoBuffer::GLTextureHandle
@@ -809,6 +815,7 @@
                 << QSize(256, 256)
                 << true
                 << true;
+#ifndef Q_WS_MAC
         QTest::newRow((type.second + "Texture: rgb24 1024x768").constData())
                 << type.first
                 << QAbstractVideoBuffer::GLTextureHandle
@@ -837,6 +844,7 @@
                 << QSize(640, -480)
                 << false
                 << false;
+#endif
         QTest::newRow(type.second + "User Buffer: rgb32 256x256")
                 << type.first
                 << QAbstractVideoBuffer::UserHandle
@@ -927,7 +935,7 @@
                 << static_cast<const uchar *>(rgb565ImageData)
                 << int(sizeof(rgb565ImageData))
                 << 4;
-
+#ifndef Q_WS_MAC
         QTest::newRow((type.second + "rgb32 -> yuv420p").constData())
                 << type.first
                 << QVideoFrame::Format_RGB32
@@ -953,6 +961,7 @@
                 << static_cast<const uchar *>(rgb32ImageData)
                 << int(sizeof(rgb32ImageData))
                 << 8;
+#endif
     }
 }