1//
2// Copyright 2020 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7// iOSPixmap.cpp: Implementation of OSPixmap for iOS
8
9#include "util/ios/IOSPixmap.h"
10
11// TODO(jdarpinian): find out the native iOS pixmap type and implement this
12// http://anglebug.com/5485
13OSPixmap *CreateOSPixmap()
14{
15    return nullptr;
16}
17