citra/src/common/texture.h
2019-11-09 12:56:17 -07:00

8 lines
No EOL
154 B
C++

#pragma once
#include <vector>
#include "common/common_types.h"
namespace Common {
void FlipRGBA8Texture(std::vector<u8>& tex, u64 width, u64 height);
}