dolphin/Source/Core/VideoBackends/Software/DebugUtil.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
621 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
2016-09-23 03:05:17 +02:00
#include "Common/CommonTypes.h"
namespace DebugUtil
{
void Init();
void Shutdown();
2013-11-16 03:59:59 +01:00
void GetTextureRGBA(u8* dst, u32 texmap, s32 mip, u32 width, u32 height);
void DumpActiveTextures();
void OnObjectBegin();
void OnObjectEnd();
2016-09-23 03:05:17 +02:00
void DrawObjectBuffer(s16 x, s16 y, const u8* color, int bufferBase, int subBuffer,
const char* name);
2016-09-23 03:05:17 +02:00
void DrawTempBuffer(const u8* color, int buffer);
void CopyTempBuffer(s16 x, s16 y, int bufferBase, int subBuffer, const char* name);
} // namespace DebugUtil