ported latest round of changes to android

This commit is contained in:
codeanticode
2012-06-21 04:28:01 +00:00
parent 453316cd58
commit e6b3e7d663
3 changed files with 23 additions and 9 deletions

View File

@@ -1102,6 +1102,11 @@ public class PGL {
}
public void glColorMask(boolean wr, boolean wg, boolean wb, boolean wa) {
GLES20.glColorMask(wr, wg, wb, wa);
}
public void glClearColor(float r, float g, float b, float a) {
GLES20.glClearColor(r, g, b, a);
}