(long sync)
| 1211 | } |
| 1212 | |
| 1213 | @Override |
| 1214 | public void deleteSync(long sync) { |
| 1215 | if (gl3es3 != null) { |
| 1216 | gl3es3.glDeleteSync(sync); |
| 1217 | } else { |
| 1218 | throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "deleteSync()")); |
| 1219 | } |
| 1220 | } |
| 1221 | |
| 1222 | @Override |
| 1223 | public int clientWaitSync(long sync, int flags, long timeout) { |