aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/GLES_COMPUTE/GCTensor.h')
-rw-r--r--arm_compute/runtime/GLES_COMPUTE/GCTensor.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/runtime/GLES_COMPUTE/GCTensor.h b/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
index 0f5f194266..05305f9b1b 100644
--- a/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
+++ b/arm_compute/runtime/GLES_COMPUTE/GCTensor.h
@@ -40,10 +40,10 @@ public:
/** Default constructor */
GCTensor();
- /** Prevent instances of this class from being copied (As this class contains pointers). */
+ /** Prevent instances of this class from being copied (As this class contains pointers) */
GCTensor(const GCTensor &) = delete;
- /** Prevent instances of this class from being copy assigned (As this class contains pointers). */
+ /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
GCTensor &operator=(const GCTensor &) = delete;
/** Allow instances of this class to be moved */
@@ -94,6 +94,7 @@ private:
mutable GCTensorAllocator _allocator; /**< Instance of the OpenGL ES tensor allocator */
};
+/** OpenGL ES Image */
using GCImage = GCTensor;
}