2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
2010-12-02 05:38:48 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
#include "VideoConfigDialog.h"
|
|
|
|
#endif // HAVE_WX
|
|
|
|
|
2014-01-01 04:33:55 +00:00
|
|
|
#include "../OGL/GLExtensions/GLExtensions.h"
|
2013-08-20 11:51:39 +00:00
|
|
|
#include "Atomic.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWCommandProcessor.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
#include "OpcodeDecoder.h"
|
2011-01-29 06:26:03 +00:00
|
|
|
#include "SWVideoConfig.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWPixelEngine.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
#include "BPMemLoader.h"
|
|
|
|
#include "XFMemLoader.h"
|
|
|
|
#include "Clipper.h"
|
|
|
|
#include "Rasterizer.h"
|
2011-02-03 19:55:30 +00:00
|
|
|
#include "SWRenderer.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
#include "HwRasterizer.h"
|
|
|
|
#include "LogManager.h"
|
|
|
|
#include "EfbInterface.h"
|
|
|
|
#include "DebugUtil.h"
|
2010-12-02 05:38:48 +00:00
|
|
|
#include "FileUtil.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
#include "VideoBackend.h"
|
2011-02-25 21:14:13 +00:00
|
|
|
#include "Core.h"
|
2013-02-26 01:05:02 +00:00
|
|
|
#include "OpcodeDecoder.h"
|
|
|
|
#include "SWVertexLoader.h"
|
2013-02-26 23:28:56 +00:00
|
|
|
#include "SWStatistics.h"
|
2013-08-20 11:51:39 +00:00
|
|
|
#include "HW/VideoInterface.h"
|
|
|
|
#include "HW/Memmap.h"
|
2013-08-20 13:50:20 +00:00
|
|
|
#include "ConfigManager.h"
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-04-13 05:48:53 +00:00
|
|
|
#include "OnScreenDisplay.h"
|
2012-12-17 20:54:20 +00:00
|
|
|
#define VSYNC_ENABLED 0
|
|
|
|
|
2013-08-20 11:51:39 +00:00
|
|
|
static volatile u32 s_swapRequested = false;
|
|
|
|
|
|
|
|
static volatile struct
|
|
|
|
{
|
2014-02-09 23:29:13 +00:00
|
|
|
u32 xfbAddr;
|
|
|
|
u32 fbWidth;
|
|
|
|
u32 fbHeight;
|
2013-08-20 11:51:39 +00:00
|
|
|
} s_beginFieldArgs;
|
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
namespace SW
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
|
|
|
|
2011-03-16 23:57:13 +00:00
|
|
|
static volatile bool fifoStateRun = false;
|
|
|
|
static volatile bool emuRunningState = false;
|
2011-12-31 04:16:12 +00:00
|
|
|
static std::mutex m_csSWVidOccupied;
|
2011-03-16 22:48:17 +00:00
|
|
|
|
|
|
|
std::string VideoSoftware::GetName()
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2011-04-17 21:39:58 +00:00
|
|
|
return _trans("Software Renderer");
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2010-07-22 02:05:28 +00:00
|
|
|
void *DllDebugger(void *_hParent, bool Show)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2010-07-22 02:05:28 +00:00
|
|
|
return NULL;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::ShowConfig(void *_hParent)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2010-12-02 05:38:48 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2011-03-16 22:22:21 +00:00
|
|
|
VideoConfigDialog diag((wxWindow*)_hParent, "Software", "gfx_software");
|
|
|
|
diag.ShowModal();
|
2010-12-02 05:38:48 +00:00
|
|
|
#endif
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
bool VideoSoftware::Initialize(void *&window_handle)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-01-19 08:18:39 +00:00
|
|
|
g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + "gfx_software.ini").c_str());
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-12-12 18:43:49 +00:00
|
|
|
InitInterface();
|
2014-01-18 04:11:59 +00:00
|
|
|
GLInterface->SetMode(GLInterfaceMode::MODE_DETECT);
|
2013-09-07 20:57:32 +00:00
|
|
|
if (!GLInterface->Create(window_handle))
|
|
|
|
{
|
|
|
|
INFO_LOG(VIDEO, "%s", "SWRenderer::Create failed\n");
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-25 21:14:13 +00:00
|
|
|
|
2013-01-19 08:18:39 +00:00
|
|
|
InitBPMemory();
|
|
|
|
InitXFMemory();
|
|
|
|
SWCommandProcessor::Init();
|
|
|
|
SWPixelEngine::Init();
|
|
|
|
OpcodeDecoder::Init();
|
|
|
|
Clipper::Init();
|
|
|
|
Rasterizer::Init();
|
|
|
|
HwRasterizer::Init();
|
|
|
|
SWRenderer::Init();
|
|
|
|
DebugUtil::Init();
|
2011-02-25 21:14:13 +00:00
|
|
|
|
|
|
|
return true;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2013-02-26 01:05:02 +00:00
|
|
|
void VideoSoftware::DoState(PointerWrap& p)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-02-26 23:28:56 +00:00
|
|
|
bool software = true;
|
|
|
|
p.Do(software);
|
|
|
|
if (p.GetMode() == PointerWrap::MODE_READ && software == false)
|
|
|
|
// change mode to abort load of incompatible save state.
|
|
|
|
p.SetMode(PointerWrap::MODE_VERIFY);
|
2013-02-26 23:43:37 +00:00
|
|
|
|
|
|
|
// TODO: incomplete?
|
2013-02-26 01:05:02 +00:00
|
|
|
SWCommandProcessor::DoState(p);
|
|
|
|
SWPixelEngine::DoState(p);
|
|
|
|
EfbInterface::DoState(p);
|
|
|
|
OpcodeDecoder::DoState(p);
|
2013-02-26 04:49:24 +00:00
|
|
|
Clipper::DoState(p);
|
|
|
|
p.Do(swxfregs);
|
2013-04-13 05:48:53 +00:00
|
|
|
p.Do(bpmem);
|
2013-04-09 23:57:39 +00:00
|
|
|
p.DoPOD(swstats);
|
2013-02-26 04:49:24 +00:00
|
|
|
|
|
|
|
// CP Memory
|
2013-04-13 05:48:53 +00:00
|
|
|
p.DoArray(arraybases, 16);
|
|
|
|
p.DoArray(arraystrides, 16);
|
|
|
|
p.Do(MatrixIndexA);
|
|
|
|
p.Do(MatrixIndexB);
|
|
|
|
p.Do(g_VtxDesc.Hex);
|
2013-02-26 04:49:24 +00:00
|
|
|
p.DoArray(g_VtxAttr, 8);
|
|
|
|
p.DoMarker("CP Memory");
|
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 12:32:23 +00:00
|
|
|
void VideoSoftware::CheckInvalidState()
|
|
|
|
{
|
|
|
|
// there is no state to invalidate
|
|
|
|
}
|
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
void VideoSoftware::PauseAndLock(bool doLock, bool unpauseOnUnlock)
|
|
|
|
{
|
|
|
|
if (doLock)
|
|
|
|
{
|
|
|
|
EmuStateChange(EMUSTATE_CHANGE_PAUSE);
|
|
|
|
if (!Core::IsGPUThread())
|
|
|
|
m_csSWVidOccupied.lock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (unpauseOnUnlock)
|
|
|
|
EmuStateChange(EMUSTATE_CHANGE_PLAY);
|
|
|
|
if (!Core::IsGPUThread())
|
|
|
|
m_csSWVidOccupied.unlock();
|
|
|
|
}
|
2011-02-08 11:02:34 +00:00
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::RunLoop(bool enable)
|
2011-02-08 11:02:34 +00:00
|
|
|
{
|
2011-03-16 23:57:13 +00:00
|
|
|
emuRunningState = enable;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::EmuStateChange(EMUSTATE_CHANGE newState)
|
2010-06-24 20:54:03 +00:00
|
|
|
{
|
2011-03-16 23:57:13 +00:00
|
|
|
emuRunningState = (newState == EMUSTATE_CHANGE_PLAY) ? true : false;
|
2010-06-24 20:54:03 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Shutdown()
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-02-26 15:42:32 +00:00
|
|
|
// TODO: should be in Video_Cleanup
|
2013-01-19 08:18:39 +00:00
|
|
|
HwRasterizer::Shutdown();
|
|
|
|
SWRenderer::Shutdown();
|
2013-04-13 05:48:53 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
// Do our OSD callbacks
|
2013-04-13 05:48:53 +00:00
|
|
|
OSD::DoCallbacks(OSD::OSD_SHUTDOWN);
|
|
|
|
|
2012-12-17 20:54:20 +00:00
|
|
|
GLInterface->Shutdown();
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2013-02-26 15:42:32 +00:00
|
|
|
void VideoSoftware::Video_Cleanup()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-09 01:37:08 +00:00
|
|
|
// This is called after Video_Initialize() from the Core
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_Prepare()
|
2012-12-17 20:54:20 +00:00
|
|
|
{
|
|
|
|
GLInterface->MakeCurrent();
|
2014-01-01 04:33:55 +00:00
|
|
|
|
|
|
|
// Init extension support.
|
|
|
|
if (!GLExtensions::Init())
|
|
|
|
{
|
|
|
|
ERROR_LOG(VIDEO, "GLExtensions::Init failed!Does your video card support OpenGL 2.0?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-24 16:31:08 +00:00
|
|
|
// Handle VSync on/off
|
|
|
|
GLInterface->SwapInterval(VSYNC_ENABLED);
|
2012-12-17 20:54:20 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
// Do our OSD callbacks
|
2013-05-26 03:17:05 +00:00
|
|
|
OSD::DoCallbacks(OSD::OSD_INIT);
|
|
|
|
|
2013-01-19 08:18:39 +00:00
|
|
|
HwRasterizer::Prepare();
|
|
|
|
SWRenderer::Prepare();
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2013-01-19 08:18:39 +00:00
|
|
|
INFO_LOG(VIDEO, "Video backend initialized.");
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run from the CPU thread (from VideoInterface.cpp)
|
2013-09-23 06:29:31 +00:00
|
|
|
void VideoSoftware::Video_BeginField(u32 xfbAddr, u32 fbWidth, u32 fbHeight)
|
2013-10-29 05:23:17 +00:00
|
|
|
{
|
2013-08-20 11:51:39 +00:00
|
|
|
s_beginFieldArgs.xfbAddr = xfbAddr;
|
|
|
|
s_beginFieldArgs.fbWidth = fbWidth;
|
|
|
|
s_beginFieldArgs.fbHeight = fbHeight;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run from the CPU thread (from VideoInterface.cpp)
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_EndField()
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-08-20 11:51:39 +00:00
|
|
|
// Techincally the XFB is continually rendered out scanline by scanline between
|
|
|
|
// BeginField and EndFeild, We could possibly get away with copying out the whole thing
|
|
|
|
// at BeginField for less lag, but for the safest emulation we run it here.
|
|
|
|
|
|
|
|
if (g_bSkipCurrentFrame || s_beginFieldArgs.xfbAddr == 0 ) {
|
|
|
|
swstats.frameCount++;
|
|
|
|
swstats.ResetFrame();
|
|
|
|
Core::Callback_VideoCopiedToXFB(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!g_SWVideoConfig.bHwRasterizer) {
|
2013-11-23 07:04:37 +00:00
|
|
|
if(!g_SWVideoConfig.bBypassXFB) {
|
2013-11-23 10:20:45 +00:00
|
|
|
EfbInterface::yuv422_packed *xfb = (EfbInterface::yuv422_packed *) Memory::GetPointer(s_beginFieldArgs.xfbAddr);
|
2013-08-20 11:51:39 +00:00
|
|
|
|
2013-11-23 07:04:37 +00:00
|
|
|
SWRenderer::UpdateColorTexture(xfb, s_beginFieldArgs.fbWidth, s_beginFieldArgs.fbHeight);
|
|
|
|
}
|
2013-08-20 11:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Idealy we would just move all the opengl contex stuff to the CPU thread, but this gets
|
|
|
|
// messy when the Hardware Rasterizer is enabled.
|
|
|
|
// And Neobrain loves his Hardware Rasterizer
|
|
|
|
|
|
|
|
// If we are runing dual core, Signal the GPU thread about the new colour texture.
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread)
|
|
|
|
Common::AtomicStoreRelease(s_swapRequested, true);
|
|
|
|
else
|
|
|
|
SWRenderer::Swap(s_beginFieldArgs.fbWidth, s_beginFieldArgs.fbHeight);
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
u32 VideoSoftware::Video_AccessEFB(EFBAccessType type, u32 x, u32 y, u32 InputData)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
|
|
|
u32 value = 0;
|
|
|
|
|
2013-04-14 03:54:02 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case PEEK_Z:
|
|
|
|
{
|
|
|
|
value = EfbInterface::GetDepth(x, y);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case POKE_Z:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PEEK_COLOR:
|
|
|
|
{
|
|
|
|
u32 color = 0;
|
|
|
|
EfbInterface::GetColor(x, y, (u8*)&color);
|
|
|
|
|
|
|
|
// rgba to argb
|
|
|
|
value = (color >> 8) | (color & 0xff) << 24;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case POKE_COLOR:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
u32 VideoSoftware::Video_GetQueryResult(PerfQueryType type)
|
|
|
|
{
|
|
|
|
// TODO:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
bool VideoSoftware::Video_Screenshot(const char *_szFilename)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-11-16 04:07:08 +00:00
|
|
|
SWRenderer::SetScreenshot(_szFilename);
|
|
|
|
return true;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:51:39 +00:00
|
|
|
// Run from the graphics thread
|
|
|
|
static void VideoFifo_CheckSwapRequest()
|
|
|
|
{
|
|
|
|
if (Common::AtomicLoadAcquire(s_swapRequested))
|
|
|
|
{
|
|
|
|
SWRenderer::Swap(s_beginFieldArgs.fbWidth, s_beginFieldArgs.fbHeight);
|
|
|
|
Common::AtomicStoreRelease(s_swapRequested, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-09 01:37:08 +00:00
|
|
|
// -------------------------------
|
|
|
|
// Enter and exit the video loop
|
|
|
|
// -------------------------------
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_EnterLoop()
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2011-12-31 04:16:12 +00:00
|
|
|
std::lock_guard<std::mutex> lk(m_csSWVidOccupied);
|
2013-04-14 03:54:02 +00:00
|
|
|
fifoStateRun = true;
|
2011-03-16 22:48:17 +00:00
|
|
|
|
2011-03-16 23:57:13 +00:00
|
|
|
while (fifoStateRun)
|
|
|
|
{
|
2013-08-20 11:51:39 +00:00
|
|
|
VideoFifo_CheckSwapRequest();
|
2011-03-16 22:48:17 +00:00
|
|
|
g_video_backend->PeekMessages();
|
2011-03-16 23:57:13 +00:00
|
|
|
|
|
|
|
if (!SWCommandProcessor::RunBuffer())
|
|
|
|
{
|
|
|
|
Common::YieldCPU();
|
2011-03-16 22:48:17 +00:00
|
|
|
}
|
2011-03-16 23:57:13 +00:00
|
|
|
|
2011-03-17 10:17:45 +00:00
|
|
|
while (!emuRunningState && fifoStateRun)
|
2011-03-16 23:57:13 +00:00
|
|
|
{
|
2011-03-17 10:17:45 +00:00
|
|
|
g_video_backend->PeekMessages();
|
2013-08-20 11:51:39 +00:00
|
|
|
VideoFifo_CheckSwapRequest();
|
2011-12-31 04:16:12 +00:00
|
|
|
m_csSWVidOccupied.unlock();
|
2011-03-17 10:17:45 +00:00
|
|
|
Common::SleepCurrentThread(1);
|
2011-12-31 04:16:12 +00:00
|
|
|
m_csSWVidOccupied.lock();
|
2011-03-16 23:57:13 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_ExitLoop()
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2013-04-14 03:54:02 +00:00
|
|
|
fifoStateRun = false;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
// TODO : could use the OSD class in video common, we would need to implement the Renderer class
|
|
|
|
// however most of it is useless for the SW backend so we could as well move it to its own class
|
|
|
|
void VideoSoftware::Video_AddMessage(const char* pstr, u32 milliseconds)
|
|
|
|
{
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_ClearMessages()
|
2011-02-03 19:55:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_SetRendering(bool bEnabled)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2011-03-16 22:48:17 +00:00
|
|
|
SWCommandProcessor::SetRendering(bEnabled);
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_GatherPipeBursted()
|
|
|
|
{
|
|
|
|
SWCommandProcessor::GatherPipeBursted();
|
|
|
|
}
|
2010-06-09 01:37:08 +00:00
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
bool VideoSoftware::Video_IsPossibleWaitingSetDrawDone(void)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2011-01-31 01:28:32 +00:00
|
|
|
return false;
|
2010-06-09 01:37:08 +00:00
|
|
|
}
|
|
|
|
|
2012-03-05 05:40:10 +00:00
|
|
|
bool VideoSoftware::Video_IsHiWatermarkActive(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::Video_AbortFrame(void)
|
2010-06-09 01:37:08 +00:00
|
|
|
{
|
2011-02-03 19:55:30 +00:00
|
|
|
}
|
2010-06-24 13:28:54 +00:00
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
readFn16 VideoSoftware::Video_CPRead16()
|
|
|
|
{
|
|
|
|
return SWCommandProcessor::Read16;
|
|
|
|
}
|
|
|
|
writeFn16 VideoSoftware::Video_CPWrite16()
|
|
|
|
{
|
|
|
|
return SWCommandProcessor::Write16;
|
|
|
|
}
|
|
|
|
|
|
|
|
readFn16 VideoSoftware::Video_PERead16()
|
|
|
|
{
|
|
|
|
return SWPixelEngine::Read16;
|
|
|
|
}
|
|
|
|
writeFn16 VideoSoftware::Video_PEWrite16()
|
|
|
|
{
|
|
|
|
return SWPixelEngine::Write16;
|
|
|
|
}
|
|
|
|
writeFn32 VideoSoftware::Video_PEWrite32()
|
|
|
|
{
|
|
|
|
return SWPixelEngine::Write32;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-07 22:01:08 +00:00
|
|
|
// Draw messages on top of the screen
|
2011-03-16 22:48:17 +00:00
|
|
|
unsigned int VideoSoftware::PeekMessages()
|
2011-02-07 22:01:08 +00:00
|
|
|
{
|
2012-12-17 20:54:20 +00:00
|
|
|
return GLInterface->PeekMessages();
|
2011-02-07 22:01:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show the current FPS
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoSoftware::UpdateFPSDisplay(const char *text)
|
2011-02-07 22:01:08 +00:00
|
|
|
{
|
|
|
|
char temp[100];
|
2011-08-21 21:30:19 +00:00
|
|
|
snprintf(temp, sizeof temp, "%s | Software | %s", scm_rev_str, text);
|
2012-12-17 20:54:20 +00:00
|
|
|
GLInterface->UpdateFPSDisplay(temp);
|
2011-02-07 22:01:08 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:58:24 +00:00
|
|
|
}
|