Move ImageProcessing and ModelViewer to reflected files.

Implement boolean support.

Change-Id: Iac2dc28067ac430b3e413fc651dfaa0b96214e2e
This commit is contained in:
Jason Sams
2010-06-21 17:42:41 -07:00
parent 3ac8da87bb
commit f110d4b787
18 changed files with 324 additions and 304 deletions

View File

@@ -244,6 +244,10 @@ public class FieldPacker {
addU32(v.w);
}
public void addBoolean(Boolean v) {
addI8(v ? 1 : 0);
}
public final byte[] getData() {
return mData;
}