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