Remove points from fixed function.
Add basic GL performance test. Change-Id: I421a41b6683b2c5f70045cdd0f610a6939105fee
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user