mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-20 04:09:03 -05:00
Remove tabs in all files except in skyeye imports and in generated GL code
This commit is contained in:
@ -318,9 +318,9 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
|
||||
return;
|
||||
|
||||
#ifndef HAVE_PNG
|
||||
return;
|
||||
return;
|
||||
#else
|
||||
if (!data)
|
||||
if (!data)
|
||||
return;
|
||||
|
||||
// Write data to file
|
||||
|
@ -41,7 +41,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data
|
||||
// Utility class to log Pica commands.
|
||||
struct PicaTrace {
|
||||
struct Write : public std::pair<u32,u32> {
|
||||
Write(u32 id, u32 value) : std::pair<u32,u32>(id, value) {}
|
||||
Write(u32 id, u32 value) : std::pair<u32,u32>(id, value) {}
|
||||
|
||||
u32& Id() { return first; }
|
||||
const u32& Id() const { return first; }
|
||||
|
Reference in New Issue
Block a user