Remove points from fixed function.

Add basic GL performance test.

Change-Id: I421a41b6683b2c5f70045cdd0f610a6939105fee
This commit is contained in:
Jason Sams
2010-07-09 15:34:32 -07:00
parent 82164ad543
commit 53a93d5e91
13 changed files with 665 additions and 53 deletions

View File

@@ -29,7 +29,6 @@ public class ProgramRaster extends BaseObj {
boolean mPointSmooth;
boolean mLineSmooth;
boolean mPointSprite;
float mPointSize;
float mLineWidth;
Element mIn;
Element mOut;
@@ -38,7 +37,6 @@ public class ProgramRaster extends BaseObj {
super(rs);
mID = id;
mPointSize = 1.0f;
mLineWidth = 1.0f;
mPointSmooth = false;
mLineSmooth = false;
@@ -51,12 +49,6 @@ public class ProgramRaster extends BaseObj {
mRS.nProgramRasterSetLineWidth(mID, w);
}
public void setPointSize(float s) {
mRS.validate();
mPointSize = s;
mRS.nProgramRasterSetPointSize(mID, s);
}
void internalInit() {
int inID = 0;
int outID = 0;