2019-08-06 12:24:07 -04:00
|
|
|
// Copyright 2019 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-08-06 11:54:12 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
void FlipRGBA8Texture(std::vector<u8>& tex, u64 width, u64 height);
|
2019-10-12 11:25:27 -04:00
|
|
|
}
|