(int x, int y, int w, int h)
| 1753 | // Per-Fragment Operations |
| 1754 | |
| 1755 | @Override |
| 1756 | public void scissor(int x, int y, int w, int h) { |
| 1757 | float scale = getPixelScale(); |
| 1758 | gl.glScissor((int)scale * x, (int)(scale * y), (int)(scale * w), (int)(scale * h)); |
| 1759 | // gl.glScissor(x, y, w, h); |
| 1760 | } |
| 1761 | |
| 1762 | @Override |
| 1763 | public void sampleCoverage(float value, boolean invert) { |
nothing calls this directly
no test coverage detected