aboutsummaryrefslogtreecommitdiff
path: root/src/libANGLE/CLDevice.h
blob: 60c2d75a117981b53b59b324974db5a877c4b214 (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.
//
// CLDevice.h: Defines the cl::Device class, which provides information about OpenCL device
// configurations.

#ifndef LIBANGLE_CLDEVICE_H_
#define LIBANGLE_CLDEVICE_H_

#include "libANGLE/CLObject.h"

namespace cl
{

class Device final : public _cl_device_id, public Object
{
  public:
    Device(const cl_icd_dispatch &dispatch);
    ~Device() = default;
};

}  // namespace cl

#endif  // LIBANGLE_CLDEVICE_H_