MCPcopy Index your code
hub / github.com/processing/processing / fenceSync

Method fenceSync

core/src/processing/opengl/PJOGL.java:1204–1211  ·  view source on GitHub ↗
(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

Calls 1

formatMethod · 0.65

Tested by

no test coverage detected