MCPcopy Create free account
hub / github.com/benfry/processing4 / fenceSync

Method fenceSync

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

Calls 1

formatMethod · 0.65

Tested by

no test coverage detected