Method
fenceSync
(int condition, int flags)
Source from the content-addressed store, hash-verified
| 1199 | // Synchronization |
| 1200 | |
| 1201 | @Override |
| 1202 | public long fenceSync(int condition, int flags) { |
| 1203 | if (gl3es3 != null) { |
| 1204 | return gl3es3.glFenceSync(condition, flags); |
| 1205 | } else { |
| 1206 | throw new RuntimeException(String.format(MISSING_GLFUNC_ERROR, "fenceSync()")); |
| 1207 | } |
| 1208 | } |
| 1209 | |
| 1210 | @Override |
| 1211 | public void deleteSync(long sync) { |
Callers
nothing calls this directly
Tested by
no test coverage detected