This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2019-08-06 16:24:07 +00:00
|
|
|
// Copyright 2019 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-08-06 15:54:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
2022-05-12 04:23:23 +00:00
|
|
|
void FlipRGBA8Texture(std::vector<u8>& tex, u32 width, u32 height);
|
2019-10-12 15:25:27 +00:00
|
|
|
}
|