aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2017-06-04 15:55:23 +0200
committerStapleButter <thetotalworm@gmail.com>2017-06-04 15:55:23 +0200
commitfa2db3826ec417dda00be845fe7980dddb569214 (patch)
tree8be9c2f97af29ff57231065e7fc0874041d38efe
parent568b9fbf49beda49b43b52f6af12d821835b766f (diff)
(finally) make the threaded 3D renderer option actually work
-rw-r--r--src/GPU3D.h2
-rw-r--r--src/GPU3D_Soft.cpp84
-rw-r--r--src/wx/main.cpp9
3 files changed, 67 insertions, 28 deletions
diff --git a/src/GPU3D.h b/src/GPU3D.h
index 482fc1f..91a745f 100644
--- a/src/GPU3D.h
+++ b/src/GPU3D.h
@@ -113,6 +113,8 @@ bool Init();
void DeInit();
void Reset();
+void SetupRenderThread();
+
void VCount144();
void RenderFrame();
void RequestLine(int line);
diff --git a/src/GPU3D_Soft.cpp b/src/GPU3D_Soft.cpp
index 6284c58..8bc0662 100644
--- a/src/GPU3D_Soft.cpp
+++ b/src/GPU3D_Soft.cpp
@@ -20,6 +20,7 @@
#include <string.h>
#include "NDS.h"
#include "GPU.h"
+#include "Config.h"
#include "Platform.h"
@@ -65,6 +66,42 @@ void* Sema_ScanlineCount;
void RenderThreadFunc();
+void StopRenderThread()
+{
+ if (RenderThreadRunning)
+ {
+ RenderThreadRunning = false;
+ Platform::Semaphore_Post(Sema_RenderStart);
+ Platform::Thread_Wait(RenderThread);
+ Platform::Thread_Free(RenderThread);
+ }
+}
+
+void SetupRenderThread()
+{
+ if (Config::Threaded3D)
+ {
+ if (!RenderThreadRunning)
+ {
+ RenderThreadRunning = true;
+ RenderThread = Platform::Thread_Create(RenderThreadFunc);
+ }
+
+ if (RenderThreadRendering)
+ Platform::Semaphore_Wait(Sema_RenderDone);
+
+ Platform::Semaphore_Reset(Sema_RenderStart);
+ Platform::Semaphore_Reset(Sema_ScanlineCount);
+
+ Platform::Semaphore_Post(Sema_RenderStart);
+ }
+ else
+ {
+ StopRenderThread();
+ }
+}
+
+
bool Init()
{
Sema_RenderStart = Platform::Semaphore_Create();
@@ -79,13 +116,7 @@ bool Init()
void DeInit()
{
- if (RenderThreadRunning)
- {
- RenderThreadRunning = false;
- Platform::Semaphore_Post(Sema_RenderStart);
- Platform::Thread_Wait(RenderThread);
- Platform::Thread_Free(RenderThread);
- }
+ StopRenderThread();
Platform::Semaphore_Free(Sema_RenderStart);
Platform::Semaphore_Free(Sema_RenderDone);
@@ -100,20 +131,7 @@ void Reset()
PrevIsShadowMask = false;
- // TODO: make it configurable
- if (!RenderThreadRunning)
- {
- RenderThreadRunning = true;
- RenderThread = Platform::Thread_Create(RenderThreadFunc);
- }
-
- if (RenderThreadRendering)
- Platform::Semaphore_Wait(Sema_RenderDone);
-
- Platform::Semaphore_Reset(Sema_RenderStart);
- Platform::Semaphore_Reset(Sema_ScanlineCount);
-
- Platform::Semaphore_Post(Sema_RenderStart);
+ SetupRenderThread();
}
@@ -921,7 +939,8 @@ void RenderPolygonScanline(RendererPolygon* rp, s32 y)
// * right edge is filled if slope > 1
// * left edge is filled if slope <= 1
// * edges with slope = 0 are always filled
- // edges are always filled if antialiasing is enabled or if the pixels are translucent
+ // right vertical edges are pushed 1px to the left
+ // edges are always filled if antialiasing/edgemarking are enabled or if the pixels are translucent
if (wireframe || (RenderDispCnt & (1<<5)))
{
@@ -1382,6 +1401,8 @@ void ScanlineFinalPass(s32 y)
{
// edge marking
+ // TODO: is it applied to bottom pixels?
+
for (int x = 0; x < 256; x++)
{
u32 pixeladdr = FirstPixelOffset + (y*ScanlineWidth) + x;
@@ -1666,15 +1687,21 @@ void RenderPolygons(bool threaded, Polygon* polygons, int npolys)
void VCount144()
{
- Platform::Semaphore_Wait(Sema_RenderDone);
+ if (RenderThreadRunning)
+ Platform::Semaphore_Wait(Sema_RenderDone);
}
void RenderFrame()
{
- //ClearBuffers();
- //RenderPolygons(false, polygons, npolys);
-
- Platform::Semaphore_Post(Sema_RenderStart);
+ if (RenderThreadRunning)
+ {
+ Platform::Semaphore_Post(Sema_RenderStart);
+ }
+ else
+ {
+ ClearBuffers();
+ RenderPolygons(false, RenderPolygonRAM, RenderNumPolygons);
+ }
}
void RenderThreadFunc()
@@ -1695,7 +1722,8 @@ void RenderThreadFunc()
void RequestLine(int line)
{
- Platform::Semaphore_Wait(Sema_ScanlineCount);
+ if (RenderThreadRunning)
+ Platform::Semaphore_Wait(Sema_ScanlineCount);
}
u32* GetLine(int line)
diff --git a/src/wx/main.cpp b/src/wx/main.cpp
index 1b245e8..a79861f 100644
--- a/src/wx/main.cpp
+++ b/src/wx/main.cpp
@@ -22,6 +22,7 @@
#include "../Config.h"
#include "../NDS.h"
#include "../GPU.h"
+#include "../GPU3D.h"
#include "../SPU.h"
#include "InputConfig.h"
@@ -283,8 +284,16 @@ void MainFrame::OnReset(wxCommandEvent& event)
void MainFrame::OnEmuConfig(wxCommandEvent& event)
{
+ bool oldpause = emuthread->EmuIsPaused();
+ if (!oldpause) emuthread->EmuPause();
+
EmuConfigDialog dlg(this);
dlg.ShowModal();
+
+ // apply threaded 3D setting
+ GPU3D::SoftRenderer::SetupRenderThread();
+
+ if (!oldpause) emuthread->EmuRun();
}
void MainFrame::OnInputConfig(wxCommandEvent& event)