Continue error check improvements and write some docs.

Change-Id: I345b08490da21d9ee715ff1ddc80c1a816b579f4
This commit is contained in:
Jason Sams
2010-11-09 17:11:40 -08:00
parent 641b0628cd
commit 06d69de788
15 changed files with 133 additions and 132 deletions

View File

@@ -58,13 +58,13 @@ public class ProgramRaster extends BaseObj {
void setLineWidth(float w) {
mRS.validate();
mLineWidth = w;
mRS.nProgramRasterSetLineWidth(mID, w);
mRS.nProgramRasterSetLineWidth(getID(), w);
}
void setCullMode(CullMode m) {
mRS.validate();
mCullMode = m;
mRS.nProgramRasterSetCullMode(mID, m.mID);
mRS.nProgramRasterSetCullMode(getID(), m.mID);
}
public static ProgramRaster CULL_BACK(RenderScript rs) {