1*8975f5c5SAndroid Build Coastguard Worker// 2*8975f5c5SAndroid Build Coastguard Worker// Copyright 2020 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// iOSPixmap.cpp: Implementation of OSPixmap for iOS 8*8975f5c5SAndroid Build Coastguard Worker 9*8975f5c5SAndroid Build Coastguard Worker#include "util/ios/IOSPixmap.h" 10*8975f5c5SAndroid Build Coastguard Worker 11*8975f5c5SAndroid Build Coastguard Worker// TODO(jdarpinian): find out the native iOS pixmap type and implement this 12*8975f5c5SAndroid Build Coastguard Worker// http://anglebug.com/42264022 13*8975f5c5SAndroid Build Coastguard WorkerOSPixmap *CreateOSPixmap() 14*8975f5c5SAndroid Build Coastguard Worker{ 15*8975f5c5SAndroid Build Coastguard Worker return nullptr; 16*8975f5c5SAndroid Build Coastguard Worker} 17