aboutsummaryrefslogtreecommitdiff
path: root/src/common/texture.h
blob: 567e4d73de3db067f10005b058059600a4b0cb73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <span>
#include "common/common_types.h"

namespace Common {

void FlipRGBA8Texture(std::span<u8> tex, u32 width, u32 height);

} // namespace Common