aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/GLES_COMPUTE/GCScheduler.h')
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCScheduler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h b/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
index 8aac9c4023..9bdff630e7 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCScheduler.h
@@ -52,7 +52,7 @@ public:
* @param[in] kernel Kernel to execute.
* @param[in] flush (Optional) Specifies if the command queue will be flushed after running the kernel.
*/
- void enqueue(IGCKernel &kernel, bool flush = true);
+ void dispatch(IGCKernel &kernel, bool flush = true);
/** Initialises the display and context to be used by the scheduler.
*
@@ -61,8 +61,8 @@ public:
*/
void init(EGLDisplay dpy, EGLContext ctx);
- /** Blocks until all commands in the associated command queue have finished. */
- void sync();
+ /** Defines a barrier ordering memory transactions. */
+ void memory_barrier();
private:
/** Constructor */