Merge "Cleaning up the api"

This commit is contained in:
Alex Sakhartchouk
2010-09-01 13:55:16 -07:00
committed by Android (Google) Code Review

View File

@@ -55,13 +55,13 @@ public class ProgramRaster extends BaseObj {
mCullMode = CullMode.BACK;
}
public void setLineWidth(float w) {
void setLineWidth(float w) {
mRS.validate();
mLineWidth = w;
mRS.nProgramRasterSetLineWidth(mID, w);
}
public void setCullMode(CullMode m) {
void setCullMode(CullMode m) {
mRS.validate();
mCullMode = m;
mRS.nProgramRasterSetCullMode(mID, m.mID);