mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 21:50:06 +00:00
1cc1c33a15
Also removes Timer::GetDoubleTime() as it is unused.
13 lines
285 B
C++
13 lines
285 B
C++
// Copyright 2019 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include "common/common_types.h"
|
|
|
|
namespace Common {
|
|
void FlipRGBA8Texture(std::vector<u8>& tex, u32 width, u32 height);
|
|
}
|