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