2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2016-09-23 01:05:17 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-10-21 06:01:38 +00:00
|
|
|
|
2010-07-06 16:16:07 +00:00
|
|
|
namespace DebugUtil
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void GetTextureRGBA(u8* dst, u32 texmap, s32 mip, u32 width, u32 height);
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void DumpActiveTextures();
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void OnObjectBegin();
|
|
|
|
void OnObjectEnd();
|
2010-07-06 16:16:07 +00:00
|
|
|
|
2016-09-23 01:05:17 +00:00
|
|
|
void DrawObjectBuffer(s16 x, s16 y, const u8* color, int bufferBase, int subBuffer,
|
|
|
|
const char* name);
|
2010-12-02 05:38:48 +00:00
|
|
|
|
2016-09-23 01:05:17 +00:00
|
|
|
void DrawTempBuffer(const u8* color, int buffer);
|
2016-06-24 08:43:46 +00:00
|
|
|
void CopyTempBuffer(s16 x, s16 y, int bufferBase, int subBuffer, const char* name);
|
2010-07-06 16:16:07 +00:00
|
|
|
}
|