1 // 2 // Copyright 2021 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 // loadtextureborder.h: Defines border color load functions. 8 9 #ifndef IMAGEUTIL_LOADTEXTUREBORDER_H_ 10 #define IMAGEUTIL_LOADTEXTUREBORDER_H_ 11 12 #include <stddef.h> 13 #include <stdint.h> 14 #include "common/Color.h" 15 namespace angle 16 { 17 18 void LoadA8ToR8(angle::ColorF &mBorderColor); 19 20 void LoadLA8ToR8G8(angle::ColorF &mBorderColor); 21 22 void LoadToNative(angle::ColorF &mBorderColor); 23 24 } // namespace angle 25 26 #endif // IMAGEUTIL_LOADTEXTUREBORDER_H_ 27