2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 04:22:19 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2016-09-23 04:05:17 +03:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-10-21 09:01:38 +03:00
|
|
|
|
2010-07-06 19:16:07 +03:00
|
|
|
namespace DebugUtil
|
|
|
|
{
|
|
|
|
void Init();
|
2014-03-05 16:19:10 +02:00
|
|
|
void Shutdown();
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2013-11-16 04:59:59 +02:00
|
|
|
void GetTextureRGBA(u8* dst, u32 texmap, s32 mip, u32 width, u32 height);
|
2010-07-06 19:16:07 +03:00
|
|
|
|
|
|
|
void DumpActiveTextures();
|
|
|
|
|
|
|
|
void OnObjectBegin();
|
|
|
|
void OnObjectEnd();
|
|
|
|
|
2016-09-23 04:05:17 +03:00
|
|
|
void DrawObjectBuffer(s16 x, s16 y, const u8* color, int bufferBase, int subBuffer,
|
|
|
|
const char* name);
|
2010-12-02 07:38:48 +02:00
|
|
|
|
2016-09-23 04:05:17 +03:00
|
|
|
void DrawTempBuffer(const u8* color, int buffer);
|
2010-12-02 07:38:48 +02:00
|
|
|
void CopyTempBuffer(s16 x, s16 y, int bufferBase, int subBuffer, const char* name);
|
2019-05-06 02:48:12 +03:00
|
|
|
} // namespace DebugUtil
|