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
|
|
|
|
|
2023-04-27 04:38:28 +00:00
|
|
|
#include <span>
|
2019-08-06 15:54:12 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
2023-04-27 04:38:28 +00:00
|
|
|
|
|
|
|
void FlipRGBA8Texture(std::span<u8> tex, u32 width, u32 height);
|
|
|
|
|
|
|
|
} // namespace Common
|