uiaccelerator_plat/alf_visual_api/tsrc/src/testplatalfvisualblocksproceduralmesh.cpp
branchRCL_3
changeset 17 3ac8bf5c5014
parent 0 15bf7259bb7c
--- a/uiaccelerator_plat/alf_visual_api/tsrc/src/testplatalfvisualblocksproceduralmesh.cpp	Wed Apr 14 16:53:50 2010 +0300
+++ b/uiaccelerator_plat/alf_visual_api/tsrc/src/testplatalfvisualblocksproceduralmesh.cpp	Tue Apr 27 17:34:42 2010 +0300
@@ -41,6 +41,10 @@
     // Print to log file
     iLog->Log( KTestProMeshMakeMethodsL );
     
+    // Mesh not supported at the moment
+    STIF_ASSERT_LEAVES_WITH( KErrNotSupported,
+                             CAlfMeshVisual::AddNewL( *iAlfCtl ) );
+/* Not supported at the moment
     CAlfMeshVisual* meshVisual = CAlfMeshVisual::AddNewL( *iAlfCtl );
     meshVisual->CreateMeshL( EAlfMeshTypeProcedural );
     CAlfProceduralMesh* proMesh = meshVisual->ProceduralMesh();
@@ -48,7 +52,7 @@
     proMesh->MakeCubeL( 1, 1, 1, 1 );
     proMesh->MakeSphereL( 1, 1, 1 );
     proMesh->MakeTorusL( 1, 1, 1, 1, 1 );
-    
+*/    
     return KErrNone;
     }
 
@@ -65,13 +69,17 @@
     // Print to log file
     iLog->Log( KTestProMeshMaterialMethodsL );
     
+    // Mesh not supported at the moment
+    STIF_ASSERT_LEAVES_WITH( KErrNotSupported,
+                             CAlfMeshVisual::AddNewL( *iAlfCtl ) );
+/* Not supported at the moment
     CAlfMeshVisual* meshVisual = CAlfMeshVisual::AddNewL( *iAlfCtl );
     meshVisual->CreateMeshL( EAlfMeshTypeProcedural );
     CAlfProceduralMesh* proMesh = meshVisual->ProceduralMesh();
     STIF_ASSERT_NOT_NULL(  proMesh );
     TAlfMaterial material = proMesh->Material();
     proMesh->SetMaterial( material );
-    
+*/    
     return KErrNone;
     }