Added ability to set font color.
Propagating the name of meshes and allocations from native a3d to java

Change-Id: If781f55340b5369459610e5e92ea69e240dcd24e
diff --git a/graphics/java/android/renderscript/Allocation.java b/graphics/java/android/renderscript/Allocation.java
index 87735b5..46f3eae 100644
--- a/graphics/java/android/renderscript/Allocation.java
+++ b/graphics/java/android/renderscript/Allocation.java
@@ -48,6 +48,7 @@
     @Override
     void updateFromNative() {
         mRS.validate();
+        mName = mRS.nGetName(mID);
         int typeID = mRS.nAllocationGetType(mID);
         if(typeID != 0) {
             mType = new Type(typeID, mRS);