Hash :
1aa88398
Author :
Date :
2021-05-24T14:19:05
CL: program object creation for front end and pass-through Add program object to back end and implement creation and info query. Bug: angleproject:6001 Change-Id: If94db8ab8b491e1ac21c767347cabb6f4f3b3cba Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2912465 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: John Plate <jplate@google.com>
//
// 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.
//
// CLProgramImpl.cpp: Implements the class methods for CLProgramImpl.
#include "libANGLE/renderer/CLProgramImpl.h"
namespace rx
{
CLProgramImpl::CLProgramImpl(const cl::Program &program) : mProgram(program) {}
CLProgramImpl::~CLProgramImpl() = default;
} // namespace rx