aboutsummaryrefslogtreecommitdiff
path: root/src/libANGLE/CLEvent.h
blob: e0320c74e069c61b0169a54e2955fdf95d68df68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// 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_