1*8975f5c5SAndroid Build Coastguard Worker // 2*8975f5c5SAndroid Build Coastguard Worker // Copyright 2021 The ANGLE Project Authors. All rights reserved. 3*8975f5c5SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 4*8975f5c5SAndroid Build Coastguard Worker // found in the LICENSE file. 5*8975f5c5SAndroid Build Coastguard Worker // 6*8975f5c5SAndroid Build Coastguard Worker // CLPlatformImpl.cpp: Implements the class methods for CLPlatformImpl. 7*8975f5c5SAndroid Build Coastguard Worker 8*8975f5c5SAndroid Build Coastguard Worker #include "libANGLE/renderer/CLPlatformImpl.h" 9*8975f5c5SAndroid Build Coastguard Worker 10*8975f5c5SAndroid Build Coastguard Worker namespace rx 11*8975f5c5SAndroid Build Coastguard Worker { 12*8975f5c5SAndroid Build Coastguard Worker 13*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl::Info::Info() = default; 14*8975f5c5SAndroid Build Coastguard Worker 15*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl::Info::~Info() = default; 16*8975f5c5SAndroid Build Coastguard Worker 17*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl::Info::Info(Info &&) = default; 18*8975f5c5SAndroid Build Coastguard Worker 19*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl::Info &CLPlatformImpl::Info::operator=(Info &&) = default; 20*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl(const cl::Platform & platform)21*8975f5c5SAndroid Build Coastguard WorkerCLPlatformImpl::CLPlatformImpl(const cl::Platform &platform) : mPlatform(platform) {} 22*8975f5c5SAndroid Build Coastguard Worker 23*8975f5c5SAndroid Build Coastguard Worker CLPlatformImpl::~CLPlatformImpl() = default; 24*8975f5c5SAndroid Build Coastguard Worker 25*8975f5c5SAndroid Build Coastguard Worker } // namespace rx 26