Add matrix ops to RSH headers.

Change-Id: I7e2843983a12e0155114b4a18813799e4341d26f
This commit is contained in:
Jason Sams
2010-06-24 13:54:11 -07:00
parent 0ebd5690b8
commit fae3f6b415
7 changed files with 499 additions and 300 deletions

View File

@@ -244,7 +244,7 @@ public class FieldPacker {
addU32(v.w);
}
public void addBoolean(Boolean v) {
public void addBoolean(boolean v) {
addI8((byte)(v ? 1 : 0));
}