blob: 9487021b7cf0ac491cc7e68801c7cc729af860ad [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.
//
// CLProgram.h: Defines the cl::Program class, which consists of a set of OpenCL kernels.
#ifndef LIBANGLE_CLPROGRAM_H_
#define LIBANGLE_CLPROGRAM_H_
#include "libANGLE/CLObject.h"
namespace cl
{
class Program final : public _cl_program, public Object
{
public:
Program(const cl_icd_dispatch &dispatch);
~Program() = default;
};
} // namespace cl
#endif // LIBANGLE_CLPROGRAM_H_