blob: e0320c74e069c61b0169a54e2955fdf95d68df68 [file] [log] [blame]
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// CLEvent.h: Defines the cl::Event class, which can be used to track the execution status of an
// OpenCL command.
#ifndef LIBANGLE_CLEVENT_H_
#define LIBANGLE_CLEVENT_H_
#include "libANGLE/CLObject.h"
namespace cl
{
class Event final : public _cl_event, public Object
{
public:
Event(const cl_icd_dispatch &dispatch);
~Event() = default;
};
} // namespace cl
#endif // LIBANGLE_CLEVENT_H_