mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-23 01:30:05 +00:00
8 lines
154 B
C++
8 lines
154 B
C++
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include "common/common_types.h"
|
||
|
|
||
|
namespace Common {
|
||
|
void FlipRGBA8Texture(std::vector<u8>& tex, u64 width, u64 height);
|
||
|
}
|