2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/Debugger.h"
|
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
|
|
|
#include "VideoCommon/PixelShaderGen.h"
|
2014-02-19 01:27:20 +00:00
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VertexShaderGen.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
//void UpdateFPSDisplay(const char *text);
|
2010-12-05 14:15:36 +00:00
|
|
|
extern NativeVertexFormat *g_nativeVertexFmt;
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
GFXDebuggerBase *g_pdebugger = nullptr;
|
2011-07-01 20:59:57 +00:00
|
|
|
volatile bool GFXDebuggerPauseFlag = false; // if true, the GFX thread will be spin locked until it's false again
|
|
|
|
volatile PauseEvent GFXDebuggerToPauseAtNext = NOT_PAUSE; // Event which will trigger spin locking the GFX thread
|
|
|
|
volatile int GFXDebuggerEventToPauseCount = 0; // Number of events to wait for until GFX thread will be paused
|
2011-02-16 12:09:39 +00:00
|
|
|
|
2010-12-05 14:15:36 +00:00
|
|
|
void GFXDebuggerUpdateScreen()
|
|
|
|
{
|
2011-02-14 02:18:03 +00:00
|
|
|
// TODO: Implement this in a backend-independent way
|
2010-12-05 14:15:36 +00:00
|
|
|
/* // update screen
|
|
|
|
if (D3D::bFrameInProgress)
|
|
|
|
{
|
|
|
|
D3D::dev->SetRenderTarget(0, D3D::GetBackBufferSurface());
|
2014-03-09 20:14:26 +00:00
|
|
|
D3D::dev->SetDepthStencilSurface(nullptr);
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
D3D::dev->StretchRect(FramebufferManager::GetEFBColorRTSurface(), nullptr,
|
|
|
|
D3D::GetBackBufferSurface(), nullptr,
|
2010-12-05 14:15:36 +00:00
|
|
|
D3DTEXF_LINEAR);
|
|
|
|
|
|
|
|
D3D::dev->EndScene();
|
2014-03-09 20:14:26 +00:00
|
|
|
D3D::dev->Present(nullptr, nullptr, nullptr, nullptr);
|
2010-12-05 14:15:36 +00:00
|
|
|
|
|
|
|
D3D::dev->SetRenderTarget(0, FramebufferManager::GetEFBColorRTSurface());
|
|
|
|
D3D::dev->SetDepthStencilSurface(FramebufferManager::GetEFBDepthRTSurface());
|
|
|
|
D3D::dev->BeginScene();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
D3D::dev->EndScene();
|
2014-03-09 20:14:26 +00:00
|
|
|
D3D::dev->Present(nullptr, nullptr, nullptr, nullptr);
|
2010-12-05 14:15:36 +00:00
|
|
|
D3D::dev->BeginScene();
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
2011-07-01 20:59:57 +00:00
|
|
|
// GFX thread
|
2010-12-05 14:15:36 +00:00
|
|
|
void GFXDebuggerCheckAndPause(bool update)
|
|
|
|
{
|
|
|
|
if (GFXDebuggerPauseFlag)
|
|
|
|
{
|
|
|
|
g_pdebugger->OnPause();
|
2014-03-10 11:30:55 +00:00
|
|
|
while ( GFXDebuggerPauseFlag )
|
2010-12-05 14:15:36 +00:00
|
|
|
{
|
2011-01-31 01:28:32 +00:00
|
|
|
g_video_backend->UpdateFPSDisplay("Paused by Video Debugger");
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
if (update) GFXDebuggerUpdateScreen();
|
2010-12-05 15:28:31 +00:00
|
|
|
SLEEP(5);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
g_pdebugger->OnContinue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-01 20:59:57 +00:00
|
|
|
// GFX thread
|
2010-12-05 14:15:36 +00:00
|
|
|
void GFXDebuggerToPause(bool update)
|
|
|
|
{
|
|
|
|
GFXDebuggerToPauseAtNext = NOT_PAUSE;
|
|
|
|
GFXDebuggerPauseFlag = true;
|
|
|
|
GFXDebuggerCheckAndPause(update);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContinueGFXDebugger()
|
|
|
|
{
|
|
|
|
GFXDebuggerPauseFlag = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpPixelShader(const char* path)
|
|
|
|
{
|
|
|
|
char filename[MAX_PATH];
|
2010-12-14 23:19:34 +00:00
|
|
|
sprintf(filename, "%sdump_ps.txt", path);
|
2010-12-05 14:15:36 +00:00
|
|
|
|
|
|
|
std::string output;
|
2011-07-01 20:59:57 +00:00
|
|
|
bool useDstAlpha = !g_ActiveConfig.bDstAlphaPass && bpmem.dstalpha.enable && bpmem.blendmode.alphaupdate && bpmem.zcontrol.pixel_format == PIXELFMT_RGBA6_Z24;
|
2010-12-05 14:15:36 +00:00
|
|
|
if (!useDstAlpha)
|
|
|
|
{
|
|
|
|
output = "Destination alpha disabled:\n";
|
2012-08-06 23:02:04 +00:00
|
|
|
/// output += GeneratePixelShaderCode(DSTALPHA_NONE, g_ActiveConfig.backend_info.APIType, g_nativeVertexFmt->m_components);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
if (g_ActiveConfig.backend_info.bSupportsDualSourceBlend)
|
2010-12-05 14:15:36 +00:00
|
|
|
{
|
|
|
|
output = "Using dual source blending for destination alpha:\n";
|
2012-08-06 23:02:04 +00:00
|
|
|
/// output += GeneratePixelShaderCode(DSTALPHA_DUAL_SOURCE_BLEND, g_ActiveConfig.backend_info.APIType, g_nativeVertexFmt->m_components);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
output = "Using two passes for emulating destination alpha:\n";
|
2012-08-06 23:02:04 +00:00
|
|
|
/// output += GeneratePixelShaderCode(DSTALPHA_NONE, g_ActiveConfig.backend_info.APIType, g_nativeVertexFmt->m_components);
|
2010-12-05 14:15:36 +00:00
|
|
|
output += "\n\nDestination alpha pass shader:\n";
|
2012-08-06 23:02:04 +00:00
|
|
|
/// output += GeneratePixelShaderCode(DSTALPHA_ALPHA_PASS, g_ActiveConfig.backend_info.APIType, g_nativeVertexFmt->m_components);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
File::CreateEmptyFile(filename);
|
2013-11-04 11:33:41 +00:00
|
|
|
File::WriteStringToFile(output, filename);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpVertexShader(const char* path)
|
|
|
|
{
|
|
|
|
char filename[MAX_PATH];
|
2010-12-15 14:47:13 +00:00
|
|
|
sprintf(filename, "%sdump_vs.txt", path);
|
2010-12-05 14:15:36 +00:00
|
|
|
|
|
|
|
File::CreateEmptyFile(filename);
|
2013-11-04 11:33:41 +00:00
|
|
|
/// File::WriteStringToFile(GenerateVertexShaderCode(g_nativeVertexFmt->m_components, g_ActiveConfig.backend_info.APIType), filename);
|
2010-12-05 14:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpPixelShaderConstants(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpVertexShaderConstants(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpTextures(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpFrameBuffer(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpGeometry(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpVertexDecl(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpMatrices(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void GFXDebuggerBase::DumpStats(const char* path)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|