// // Copyright 2013 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. // // copyimage.cpp: Defines image copying functions #include "image_util/copyimage.h" namespace angle { namespace { inline uint32_t SwizzleBGRAToRGBA(uint32_t argb) { … } void CopyBGRA8ToRGBA8Fast(const uint8_t *source, int srcYAxisPitch, uint8_t *dest, int destYAxisPitch, int destWidth, int destHeight) { … } } // namespace void CopyBGRA8ToRGBA8(const uint8_t *source, int srcXAxisPitch, int srcYAxisPitch, uint8_t *dest, int destXAxisPitch, int destYAxisPitch, int destWidth, int destHeight) { … } } // namespace angle