1*8975f5c5SAndroid Build Coastguard Worker // 2*8975f5c5SAndroid Build Coastguard Worker // Copyright 2015 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 7*8975f5c5SAndroid Build Coastguard Worker // DeviceImpl.cpp: Implementation methods of egl::Device 8*8975f5c5SAndroid Build Coastguard Worker 9*8975f5c5SAndroid Build Coastguard Worker #include "libANGLE/renderer/DeviceImpl.h" 10*8975f5c5SAndroid Build Coastguard Worker 11*8975f5c5SAndroid Build Coastguard Worker namespace rx 12*8975f5c5SAndroid Build Coastguard Worker { 13*8975f5c5SAndroid Build Coastguard Worker DeviceImpl()14*8975f5c5SAndroid Build Coastguard WorkerDeviceImpl::DeviceImpl() {} 15*8975f5c5SAndroid Build Coastguard Worker ~DeviceImpl()16*8975f5c5SAndroid Build Coastguard WorkerDeviceImpl::~DeviceImpl() {} 17*8975f5c5SAndroid Build Coastguard Worker getDeviceString(EGLint name)18*8975f5c5SAndroid Build Coastguard Workerconst std::string DeviceImpl::getDeviceString(EGLint name) 19*8975f5c5SAndroid Build Coastguard Worker { 20*8975f5c5SAndroid Build Coastguard Worker UNIMPLEMENTED(); 21*8975f5c5SAndroid Build Coastguard Worker return std::string(); 22*8975f5c5SAndroid Build Coastguard Worker } 23*8975f5c5SAndroid Build Coastguard Worker 24*8975f5c5SAndroid Build Coastguard Worker } // namespace rx 25