()
| 8211 | |
| 8212 | |
| 8213 | public void endRaw() { // ignore |
| 8214 | if (raw != null) { |
| 8215 | // for 3D, need to flush any geometry that's been stored for sorting |
| 8216 | // (particularly if the ENABLE_DEPTH_SORT hint is set) |
| 8217 | flush(); |
| 8218 | |
| 8219 | // just like beginDraw, this will have to be called because |
| 8220 | // endDraw() will be happening outside of draw() |
| 8221 | raw.endDraw(); |
| 8222 | raw.dispose(); |
| 8223 | raw = null; |
| 8224 | } |
| 8225 | } |
| 8226 | |
| 8227 | |
| 8228 | public boolean haveRaw() { // ignore |