aboutsummaryrefslogtreecommitdiff
path: root/src/libANGLE/CLPlatform.h
blob: 1188d1797bd87588bc3caab963eeb2206a690956 (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.
//
// CLPlatform.h: Defines the cl::Platform class, which provides information about platform-specific
// OpenCL features.

#ifndef LIBANGLE_CLPLATFORM_H_
#define LIBANGLE_CLPLATFORM_H_

#include "libANGLE/CLObject.h"

namespace cl
{

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

}  // namespace cl

#endif  // LIBANGLE_CLPLATFORM_H_