16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
//
|
|
// Copyright 2015 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.
|
|
//
|
|
|
|
// OSXPixmap.cpp: Implementation of OSPixmap for OSX
|
|
|
|
#include "util/osx/OSXPixmap.h"
|
|
|
|
// TODO(cwallez) find out the native OSX pixmap type and implement this
|
|
OSPixmap *CreateOSPixmap()
|
|
{
|
|
return nullptr;
|
|
}
|