Remove UNSIGNED_INTEGER property type (removed from core) 86/43386/2
authorKimmo Hoikka <kimmo.hoikka@samsung.com>
Wed, 8 Jul 2015 14:40:55 +0000 (15:40 +0100)
committerKimmo Hoikka <kimmo.hoikka@samsung.com>
Thu, 9 Jul 2015 10:45:59 +0000 (03:45 -0700)
Change-Id: I5bd7eee4565227f2d47a6d269ca4a3f775925bdd

examples/line-mesh/line-mesh-example.cpp
examples/mesh-sorting/mesh-sorting-example.cpp
examples/new-window/new-window-example.cpp
examples/radial-menu/radial-sweep-view-impl.cpp
examples/textured-mesh/textured-mesh-example.cpp

index 642441d..6388956 100644 (file)
@@ -93,7 +93,7 @@ Geometry CreateGeometry()
   // Create indices
   unsigned int indexData[10] = { 0, 1, 1, 2, 2, 3, 3, 4, 4, 0 };
   Property::Map indexFormat;
-  indexFormat["indices"] = Property::UNSIGNED_INTEGER;
+  indexFormat["indices"] = Property::INTEGER;
   PropertyBuffer indices = PropertyBuffer::New( indexFormat, sizeof(indexData)/sizeof(indexData[0]) );
   indices.SetData(indexData);
 
index 248a4c3..39b26e4 100644 (file)
@@ -104,7 +104,7 @@ Geometry CreateGeometry()
   // Create indices
   unsigned int indexData[6] = { 0, 3, 1, 0, 2, 3 };
   Property::Map indexFormat;
-  indexFormat["indices"] = Property::UNSIGNED_INTEGER;
+  indexFormat["indices"] = Property::INTEGER;
   PropertyBuffer indices = PropertyBuffer::New( indexFormat, 6 );
   indices.SetData(indexData);
 
index 889e038..a8d6e0b 100644 (file)
@@ -441,7 +441,7 @@ Geometry NewWindowController::CreateMeshGeometry()
   // Specify all the faces
   unsigned int indexData[12] = { 0,1,3,0,2,4,0,3,4,0,2,1 };
   Property::Map indexFormat;
-  indexFormat["indices"] = Property::UNSIGNED_INTEGER;
+  indexFormat["indices"] = Property::INTEGER;
   PropertyBuffer indices = PropertyBuffer::New( indexFormat, 12 );
   indices.SetData( indexData );
 
index 85dbc47..9c791c7 100644 (file)
@@ -336,7 +336,7 @@ void RadialSweepViewImpl::CreateStencil( Radian initialSector )
 
   unsigned int indexData[15] = { 0,1,2,0,2,3,0,3,4,0,4,5,0,5,6 };
   Property::Map indexFormat;
-  indexFormat["indices"] = Property::UNSIGNED_INTEGER;
+  indexFormat["indices"] = Property::INTEGER;
   PropertyBuffer indices = PropertyBuffer::New( indexFormat, 15u );
   indices.SetData( indexData );
 
index 04b3e7b..3b65701 100644 (file)
@@ -81,7 +81,7 @@ Geometry CreateGeometry()
   // Create indices
   unsigned int indexData[6] = { 0, 3, 1, 0, 2, 3 };
   Property::Map indexFormat;
-  indexFormat["indices"] = Property::UNSIGNED_INTEGER;
+  indexFormat["indices"] = Property::INTEGER;
   PropertyBuffer indices = PropertyBuffer::New( indexFormat, sizeof(indexData)/sizeof(indexData[0]) );
   indices.SetData(indexData);